|
...
|
...
|
@@ -20,8 +20,8 @@ all: fzy
|
|
20
|
20
|
test/fzytest: $(TESTOBJECTS)
|
|
21
|
21
|
$(CC) $(CFLAGS) $(CCFLAGS) -Isrc -o $@ $(TESTOBJECTS) $(LIBS)
|
|
22
|
22
|
|
|
23
|
|
-integration_test: fzy
|
|
24
|
|
- cd test/integration && bundle && bundle exec ruby integration_test.rb
|
|
|
23
|
+acceptance: fzy
|
|
|
24
|
+ cd test/acceptance && bundle && bundle exec ruby acceptance_test.rb
|
|
25
|
25
|
|
|
26
|
26
|
test: check
|
|
27
|
27
|
check: test/fzytest
|
|
...
|
...
|
@@ -53,4 +53,4 @@ clean:
|
|
53
|
53
|
veryclean: clean
|
|
54
|
54
|
rm -f config.h
|
|
55
|
55
|
|
|
56
|
|
-.PHONY: test check all clean veryclean install fmt integration_test
|
|
|
56
|
+.PHONY: test check all clean veryclean install fmt acceptance
|