summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-12-30 18:13:06 -0800
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-12-30 18:13:18 -0800
commit30aa7ea94288ceaf4f2ef8a73bcfdcc5dae452b6 (patch)
tree97d78acc35adcdd969a3f952e32644838454cc47 /Makefile
parentc373470cbb72af3f1432f01c255c7ce69eb04aee (diff)
Rename acceptance test
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