From: Harald Hoyer Date: Fri, 28 Feb 2014 12:25:39 +0000 (+0100) Subject: test/Makefile: add SKIP env to skip certain tests X-Git-Tag: 037~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be1c0381e5beb75860212243e6872573d5462c9e;p=thirdparty%2Fdracut.git test/Makefile: add SKIP env to skip certain tests --- diff --git a/test/Makefile b/test/Makefile index 97a7aad83..f71f85405 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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