aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2022-07-08 11:08:28 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-07-12 08:57:23 +0000
commit00aa4c0b0c81701bfa33b0c16be4a9acb53a67fc (patch)
treec77bd3f1514dffea505b0a67d0331f452f9c3d16 /tests
parent33270763c41b0590c1eae0bf64a141033ea63039 (diff)
Disable debugger tests on macOS/x86_64
They run into a hard to reproduce deadlock in the CI. In turn re-enable tst_qqmljdebugjs for macOS/arm as there it doesn't happen. Task-number: QTBUG-102984 Task-number: QTBUG-101678 Change-Id: I17d483b7c44b36d17cfc2f0f31fcccd30cd4548a Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 873bdb3146067a6c497b4e081e4f447140853b3c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/debugger/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/debugger/CMakeLists.txt b/tests/auto/qml/debugger/CMakeLists.txt
index edd268cb94..a8bb089e15 100644
--- a/tests/auto/qml/debugger/CMakeLists.txt
+++ b/tests/auto/qml/debugger/CMakeLists.txt
@@ -5,7 +5,7 @@ add_subdirectory(qqmldebugtranslationservice)
add_subdirectory(qpacketprotocol)
add_subdirectory(qqmlnativeconnector)
-if(NOT CMAKE_CROSSCOMPILING)
+if(NOT (CMAKE_CROSSCOMPILING OR (MACOS AND TEST_architecture_arch STREQUAL "x86_64")))
add_subdirectory(qdebugmessageservice)
add_subdirectory(qqmldebugtranslationclient)
add_subdirectory(qqmlenginedebugservice)
@@ -23,7 +23,7 @@ if(QT_FEATURE_private_tests)
add_subdirectory(qqmldebugclient)
add_subdirectory(qqmldebuglocal)
add_subdirectory(qv4debugger)
- if(NOT CMAKE_CROSSCOMPILING)
+ if(NOT (CMAKE_CROSSCOMPILING OR (MACOS AND TEST_architecture_arch STREQUAL "x86_64")))
add_subdirectory(qqmldebugservice)
endif()
endif()