summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestblacklist.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2024-01-08 15:45:45 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2024-01-24 08:31:33 +0100
commite066172c49173141cd72aa40f127213065100527 (patch)
tree664f93342b98a8dbae4e2b2fb2b484b7fbd3ff87 /src/testlib/qtestblacklist.cpp
parent100071af82963e712cb055e5d98795376d89e65c (diff)
testlib: Remove the "cmake" key from BLACKLIST files
All usages of "cmake" in BLACKLIST files have been removed, and the keyword can be removed. Fixes: QTBUG-90545 Change-Id: Ief1d307490b2673a4e1081d277c1e34264eb3107 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'src/testlib/qtestblacklist.cpp')
-rw-r--r--src/testlib/qtestblacklist.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/testlib/qtestblacklist.cpp b/src/testlib/qtestblacklist.cpp
index ccd8ba73c4..064a59f012 100644
--- a/src/testlib/qtestblacklist.cpp
+++ b/src/testlib/qtestblacklist.cpp
@@ -28,8 +28,7 @@ using namespace Qt::StringLiterals;
Each blacklist line is interpreted as a list of keywords in an AND-relationship.
To blacklist a test for multiple platforms (OR-relationship), use separate lines.
- The key "ci" applies only when run by COIN. The key "cmake" applies when Qt
- is built using CMake. Other keys name platforms, operating systems,
+ The key "ci" applies only when run by COIN. Other keys name platforms, operating systems,
distributions, tool-chains or architectures; a ! prefix reverses what it
checks. A version, joined to a key (at present, only for distributions and
for msvc) with a hyphen, limits the key to the specific version. A keyword
@@ -170,8 +169,6 @@ static QSet<QByteArray> keywords()
#ifdef QT_BUILD_INTERNAL
<< "developer-build"
#endif
-
- << "cmake"
;
QCoreApplication *app = QCoreApplication::instance();