summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ebb6ad2..530bd2f 100644
--- a/Makefile
+++ b/Makefile
@@ -20,8 +20,8 @@ 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
+acceptance: fzy
+ cd test/acceptance && bundle && bundle exec ruby acceptance_test.rb
test: check
check: test/fzytest
@@ -53,4 +53,4 @@ clean:
veryclean: clean
rm -f config.h
-.PHONY: test check all clean veryclean install fmt integration_test
+.PHONY: test check all clean veryclean install fmt acceptance