You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
737 B
22 lines
737 B
6 years ago
|
From e96c0100113eb35a476fdb7949d5e347a81281a2 Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Fri, 28 Feb 2014 13:25:39 +0100
|
||
|
Subject: [PATCH] test/Makefile: add SKIP env to skip certain tests
|
||
|
|
||
|
---
|
||
|
test/Makefile | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/test/Makefile b/test/Makefile
|
||
|
index 97a7aad8..f71f8540 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
|
||
|
|