diff options
author | Łukasz Matysiak <[email protected]> | 2024-06-04 13:03:50 +0200 |
---|---|---|
committer | Łukasz Matysiak <[email protected]> | 2024-06-05 15:06:47 +0200 |
commit | 8f9b0891f59dbc59d1295bf8eff361070bd01a9d (patch) | |
tree | aa2d4ff10a37deabb411137d3dd6f5aea1a67046 | |
parent | 374a2b0c5fe8b4a6c52f39a20075f1282ce76b96 (diff) |
Add vxworks to the list of keywords used to blacklist tests
Right now vxworks is not on the list of keywords used to blacklist
tests.
Because of that, it's not possible to blacklist a test specifically on
that platform.
Solve the problem by extending the list.
Pick-to: 6.7 6.8
Task-number: QTBUG-115777
Change-Id: I04d55eabc27f7554ea9e3fa030ff118a22a624b6
Reviewed-by: Thiago Macieira <[email protected]>
-rw-r--r-- | src/testlib/qtestblacklist.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testlib/qtestblacklist.cpp b/src/testlib/qtestblacklist.cpp index 4154f8f2a60..5e3e158bc13 100644 --- a/src/testlib/qtestblacklist.cpp +++ b/src/testlib/qtestblacklist.cpp @@ -127,6 +127,9 @@ static QSet<QByteArray> keywords() #ifdef Q_OS_QNX << "qnx" #endif +#ifdef Q_OS_VXWORKS + << "vxworks" +#endif #ifdef Q_OS_WEBOS << "webos" #endif |