aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2020-10-02 10:00:23 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2020-10-02 10:48:05 +0200
commit2dfe9010c61e07af823aef94cd158088d09ef804 (patch)
treeb94de4ce7ddad1f9c7e893146108614acc10fd3b /tests
parent3ff1cbd6c071b53ed69bb310434070965246144a (diff)
skip tst_QQuickMouseArea::nestedEventDelivery on macOS
It has blocked integrating anything in CI because of crashing, so blacklisting is not enough. Does not crash locally for me on macOS 10.15 Task-number: QTBUG-86729 Change-Id: Iddae9edb09fd7b7fdadd122779832c80d0376b2d Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp
index 7bf9660978..6a9d5cedc0 100644
--- a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp
+++ b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp
@@ -2389,6 +2389,9 @@ void tst_QQuickMouseArea::mask()
void tst_QQuickMouseArea::nestedEventDelivery() // QTBUG-70898
{
+#ifdef Q_OS_MACOS
+ QSKIP("this test currently crashes on MacOS 10.14 in CI. See QTBUG-86729");
+#endif
QQmlEngine engine;
QQmlComponent c(&engine, testFileUrl("nestedSendEvent.qml"));
QScopedPointer<QQuickWindow> window(qmlobject_cast<QQuickWindow *>(c.create()));