From 44a381087eba209c318104f5b027728b9f8db86e Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 24 Sep 2014 08:37:35 +0200 Subject: [PATCH] Add * as a valid token to our blacklisting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This helps to blacklist a test function on all platforms, something that isn't easily possible currently. Adding [testfunction] * to the BLACKLIST file will now blacklist the function on all platforms. Change-Id: I9e1a1daf94caa05408a6b3cd7ea7a3acdc962a43 Reviewed-by: Simo Fält Reviewed-by: Simon Hausmann --- src/testlib/qtestblacklist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/testlib/qtestblacklist.cpp b/src/testlib/qtestblacklist.cpp index 7921b350b5..69f8ae4ca5 100644 --- a/src/testlib/qtestblacklist.cpp +++ b/src/testlib/qtestblacklist.cpp @@ -70,6 +70,7 @@ QT_BEGIN_NAMESPACE // this table can be extended with new keywords as required const char *matchedConditions[] = { + "*", #ifdef Q_OS_LINUX "linux", #endif