summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2022-11-30 15:23:19 +0000
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-12-13 09:29:22 +0000
commit1cd5ed5468259d59a91055b7d0a21571f29d650e (patch)
treea9a7e0674efb3f51a054cf96aaa7b634631c6bce
parentd09c87aa52b6e608c3ec9dad63d466e057c6e3cd (diff)
Disable qresourcemanager test on QEMU
It's flaky ... Task-number: QTBUG-107693 Change-Id: I67cbb5ef8800f5c29e33ae17241b04b3af0ed067 Reviewed-by: Paul Lemire <paul.lemire@kdab.com> (cherry picked from commit 4e728a2d3248b7c068b0c9b7cf1e38b3493bc3d6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/core/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/core/CMakeLists.txt b/tests/auto/core/CMakeLists.txt
index b5e65e8ff..5971ba67d 100644
--- a/tests/auto/core/CMakeLists.txt
+++ b/tests/auto/core/CMakeLists.txt
@@ -1,7 +1,11 @@
# Generated from core.pro.
add_subdirectory(handle)
-add_subdirectory(qresourcemanager)
+if(NOT (UNIX AND NOT APPLE AND NOT WIN32 AND CMAKE_CROSSCOMPILING))
+ # that test is flacky on QEMU (crashes on app exit QTBUG-107693),
+ # so disabling when cross-compiling on linux
+ add_subdirectory(qresourcemanager)
+endif()
add_subdirectory(nodes)
add_subdirectory(qaspectengine)
add_subdirectory(qaspectfactory)