Browse Source

test/Makefile: fixed TESTS parsing

master
Harald Hoyer 13 years ago
parent
commit
9fd9e96130
  1. 2
      test/Makefile

2
test/Makefile

@ -5,7 +5,7 @@ check: @@ -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…
Cancel
Save