aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 02a6289287607227a97977a33bab18b48eb28a49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.SUFFIXES:
MAKEFLAGS += -r

ROOT = ..
-include $(ROOT)/config.mk

TESTS=$(patsubst %/,%,$(wildcard */))

.PHONY: $(TESTS)
$(TESTS):
	cd $@ && ./$@.sh 2>&1 | tee $@.log
	cd $@ && grep -a TESTING $@.log && ! grep -a -q "TESTING ERROR" $@.log

.PHONY: clean
clean:
	for test in $(TESTS); do rm -f "$$test/$$test.log"; done

.PHONY: distclean
distclean: clean