summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-06-07 11:01:36 +0200
committerMichael BrĂ¼ning <michael.bruning@qt.io>2022-07-05 12:56:41 +0000
commitb257ca2411745deaf8525f88f9bb0707f948763a (patch)
tree89b82cd4d83804bae94ff8bf058bb4213726f1e0 /tests/auto
parent126584f52e883a8caaacb79c34e9e0779260d61f (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. Pick-to: 6.4 6.3 Task-number: QTBUG-101744 Task-number: QTBUG-103354 Change-Id: Ib56921b8d075ab5874f68fe8c0815c6c0155b5de Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'tests/auto')
-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)