test/Makefile: fixed TESTS parsing
parent
f0a7fc5b43
commit
9fd9e96130
test
|
@ -5,7 +5,7 @@ check:
|
|||
@for i in TEST-[0-9]*; do \
|
||||
[ -d $$i ] || continue ; \
|
||||
[ -f $$i/Makefile ] || continue ; \
|
||||
if [ -n "$$TESTS" ]; then t=$${i##TEST-}; t=$${t%-*}; [ "$${TESTS#*$$t*}" != "$$TESTS" ] || continue; fi; \
|
||||
if [ -n "$$TESTS" ]; then t=$${i##TEST-}; t=$${t%%-*}; [ "$${TESTS#*$$t*}" != "$$TESTS" ] || continue; fi; \
|
||||
$(MAKE) -C $$i all ; \
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue