summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2022-06-04 14:14:24 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2022-06-04 20:55:31 +0200
commitaf4f03f51fc647c48968e149799cd35ab161dc55 (patch)
treebba9d2c734750713fe61f964b0da6c626a4ae031
parent53f3775a532c8a926f3c7ba7d1daf8ada72be306 (diff)
Skip tst_UIDelegates::contextMenu on macOS
Task-number: QTBUG-103354 Task-number: QTBUG-101744 Change-Id: I6faf1d9cc2110d527050804e15ecb16ff12f528b Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
-rw-r--r--tests/auto/quick/uidelegates/tst_uidelegates.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/quick/uidelegates/tst_uidelegates.cpp b/tests/auto/quick/uidelegates/tst_uidelegates.cpp
index 4c2fa3b3c..cbf14a186 100644
--- a/tests/auto/quick/uidelegates/tst_uidelegates.cpp
+++ b/tests/auto/quick/uidelegates/tst_uidelegates.cpp
@@ -159,6 +159,9 @@ void tst_UIDelegates::fileDialog()
void tst_UIDelegates::contextMenu()
{
+#ifdef Q_OS_MACOS
+ QSKIP("Failing on macOS (QTBUG-103354)");
+#endif
m_window->show();
QTRY_VERIFY(qApp->focusObject());
QQuickWebEngineView *view = webEngineView();