test/Makefile: add SKIP env to skip certain tests

Harald Hoyer 2014-02-28 13:25:39 +01:00
parent 8482be832c
commit e96c010011
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ check:
[ -d $$i ] || continue ; \
[ -f $$i/Makefile ] || continue ; \
if [ -n "$$TESTS" ]; then t=$${i##TEST-}; t=$${t%%-*}; [ "$${TESTS#*$$t*}" != "$$TESTS" ] || continue; fi; \
if [ -n "$$SKIP" ]; then t=$${i##TEST-}; t=$${t%%-*}; [ "$${SKIP#*$$t*}" != "$$SKIP" ] && continue; fi; \
$(MAKE) -C $$i all ; \
done