From a092feb71a06997902755c13de575246ab5cb0f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Matysiak?= Date: Tue, 4 Jun 2024 13:03:50 +0200 Subject: [PATCH] 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 Task-number: QTBUG-115777 Change-Id: I04d55eabc27f7554ea9e3fa030ff118a22a624b6 Reviewed-by: Thiago Macieira (cherry picked from commit 8f9b0891f59dbc59d1295bf8eff361070bd01a9d) Reviewed-by: Qt Cherry-pick Bot --- src/testlib/qtestblacklist.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 keywords() #ifdef Q_OS_QNX << "qnx" #endif +#ifdef Q_OS_VXWORKS + << "vxworks" +#endif #ifdef Q_OS_WEBOS << "webos" #endif