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 <lars.knoll@theqtcompany.com>
This commit is contained in:
Rainer Keller 2015-09-17 10:49:50 +02:00
parent 53569c1383
commit 7db9c610f1

View File

@ -121,6 +121,13 @@ static QSet<QByteArray> keywords()
#endif
#endif
#ifdef Q_PROCESSOR_X86
<< "x86"
#endif
#ifdef Q_PROCESSOR_ARM
<< "arm"
#endif
#ifdef Q_AUTOTEST_EXPORT
<< "developer-build"
#endif