aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2023-01-06 13:26:52 +0100
committerUlf Hermann <ulf.hermann@qt.io>2023-01-09 15:18:18 +0000
commit13f3b2bc64c6cf38979bbb645b12c1d4d93c6b66 (patch)
treec0314afc2cb713c1049a0b11a785182cd5eef376
parent722b816e7cb376a1bab03a792fdc1a8a664f8fb2 (diff)
INTEGRITY: Skip tst_qqmlfileselector
The linker tends to crash when linking it. Pick-to: 6.5 Task-number: QTBUG-109869 Change-Id: Ib5e4d400377d9bbf80a93163edd6e279a18b5602 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Tatiana Borisova <tatiana.borisova@qt.io> Reviewed-by: Kimmo Ollila <kimmo.ollila@qt.io>
-rw-r--r--tests/auto/qml/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/qml/CMakeLists.txt b/tests/auto/qml/CMakeLists.txt
index 94b580932f..1766810f81 100644
--- a/tests/auto/qml/CMakeLists.txt
+++ b/tests/auto/qml/CMakeLists.txt
@@ -15,7 +15,11 @@ add_subdirectory(qjsprimitivevalue)
add_subdirectory(qjsvalueiterator)
add_subdirectory(qjsonbinding)
add_subdirectory(qqmlfile)
-add_subdirectory(qqmlfileselector)
+
+if(NOT INTEGRITY)
+ # The INTEGRITY linker tends to crash on tst_qqmlfileselector
+ add_subdirectory(qqmlfileselector)
+endif()
# Limit set of tests to run for static Qt builds.
if(QT_BUILD_MINIMAL_STATIC_TESTS)