From 2dfe9010c61e07af823aef94cd158088d09ef804 Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Fri, 2 Oct 2020 10:00:23 +0200 Subject: [PATCH] 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 --- tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 window(qmlobject_cast(c.create()));