From 9fd9e96130040b52b54dc565e6bd27e4a3a9aa27 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 1 Aug 2012 12:50:54 +0200 Subject: [PATCH] test/Makefile: fixed TESTS parsing --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 3411035ba..97a7aad83 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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 -- 2.47.3