712866
From e96c0100113eb35a476fdb7949d5e347a81281a2 Mon Sep 17 00:00:00 2001
712866
From: Harald Hoyer <harald@redhat.com>
712866
Date: Fri, 28 Feb 2014 13:25:39 +0100
712866
Subject: [PATCH] test/Makefile: add SKIP env to skip certain tests
712866
712866
---
712866
 test/Makefile | 1 +
712866
 1 file changed, 1 insertion(+)
712866
712866
diff --git a/test/Makefile b/test/Makefile
5c6c2a
index 97a7aad8..f71f8540 100644
712866
--- a/test/Makefile
712866
+++ b/test/Makefile
712866
@@ -6,6 +6,7 @@ check:
712866
 		[ -d $$i ] || continue ; \
712866
 		[ -f $$i/Makefile ] || continue ; \
712866
 		if [ -n "$$TESTS" ]; then t=$${i##TEST-}; t=$${t%%-*}; [ "$${TESTS#*$$t*}" != "$$TESTS" ] || continue; fi; \
712866
+		if [ -n "$$SKIP" ]; then t=$${i##TEST-}; t=$${t%%-*}; [ "$${SKIP#*$$t*}" != "$$SKIP" ] && continue; fi; \
712866
 		$(MAKE) -C $$i all ; \
712866
 	done
712866