summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-12-28 00:48:09 -0800
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-12-28 01:27:14 -0800
commit62862ec61d0dc48a44e13291f4ce3d3fcd4756ea (patch)
tree5fa14b71f730065305371719c661dae60b768f7d /Makefile
parent1ccbde52bab8ef0ec3062e50781188a0d57018d2 (diff)
Add integration test helper to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a467932..ebb6ad2 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,9 @@ all: fzy
test/fzytest: $(TESTOBJECTS)
$(CC) $(CFLAGS) $(CCFLAGS) -Isrc -o $@ $(TESTOBJECTS) $(LIBS)
+integration_test: fzy
+ cd test/integration && bundle && bundle exec ruby integration_test.rb
+
test: check
check: test/fzytest
$(DEBUGGER) ./test/fzytest
@@ -50,4 +53,4 @@ clean:
veryclean: clean
rm -f config.h
-.PHONY: test check all clean veryclean install fmt
+.PHONY: test check all clean veryclean install fmt integration_test