aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
new file mode 100644
index 000000000..8472b43cb
--- /dev/null
+++ b/test/Makefile.in
@@ -0,0 +1,11 @@
1TESTS=$(patsubst %/,%,$(wildcard */))
2
3.PHONY: $(TESTS)
4
5$(TESTS):
6 echo $(TESTS)
7 cd $@ && ./$@.sh 2>&1 | tee $@.log
8 cd $@ && grep -a TESTING $@.log && grep -a -L "TESTING ERROR" $@.log
9
10clean:
11 for test in $(TESTS); do rm -f "$$test/$$test.log"; done