summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-06-07 11:01:36 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-07-05 20:15:17 +0000
commitd665cf4bf1fb925125bf1ce24ac87b6564bf5fb6 (patch)
treedd28cb44c8e29b394e051d7fa9dc59b9695c1d30
parent99eb263f2404c2b68656d1304cb2da993b0a6466 (diff)
Skip uidelegates test on macos
We have two bugs here, one failing most tests, and one crashing. Skip the entire test on macos until fixed. Task-number: QTBUG-101744 Task-number: QTBUG-103354 Change-Id: Ib56921b8d075ab5874f68fe8c0815c6c0155b5de Reviewed-by: Michal Klocek <michal.klocek@qt.io> (cherry picked from commit b257ca2411745deaf8525f88f9bb0707f948763a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/quick/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/quick/CMakeLists.txt b/tests/auto/quick/CMakeLists.txt
index d44d67d38..48a83e7de 100644
--- a/tests/auto/quick/CMakeLists.txt
+++ b/tests/auto/quick/CMakeLists.txt
@@ -2,7 +2,10 @@ add_subdirectory(dialogs)
add_subdirectory(publicapi)
add_subdirectory(qquickwebenginedefaultsurfaceformat)
add_subdirectory(qtbug-70248)
-add_subdirectory(uidelegates)
+# Re-enable if QTBUG-101744 and QTBUG-103354 have been fixed.
+if(NOT MACOS)
+ add_subdirectory(uidelegates)
+endif()
add_subdirectory(inspectorserver)
add_subdirectory(qmltests)
add_subdirectory(qquickwebengineview)