From 7db9c610f1acb89b359e43400ba70d99a7b00e91 Mon Sep 17 00:00:00 2001 From: Rainer Keller Date: Thu, 17 Sep 2015 10:49:50 +0200 Subject: [PATCH] Add processor types to blacklist keywords This allows to disable tests that do not work on ARM machines. Change-Id: I80b54da2978479e037b73ca3af87567e8d9d1b60 Reviewed-by: Lars Knoll --- src/testlib/qtestblacklist.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/testlib/qtestblacklist.cpp b/src/testlib/qtestblacklist.cpp index c2643a2304c..fe69e097e76 100644 --- a/src/testlib/qtestblacklist.cpp +++ b/src/testlib/qtestblacklist.cpp @@ -121,6 +121,13 @@ static QSet keywords() #endif #endif +#ifdef Q_PROCESSOR_X86 + << "x86" +#endif +#ifdef Q_PROCESSOR_ARM + << "arm" +#endif + #ifdef Q_AUTOTEST_EXPORT << "developer-build" #endif