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>
This commit is contained in:
Shawn Rutledge 2020-10-02 10:00:23 +02:00
parent 3ff1cbd6c0
commit 2dfe9010c6
1 changed files with 3 additions and 0 deletions

View File

@ -2389,6 +2389,9 @@ void tst_QQuickMouseArea::mask()
void tst_QQuickMouseArea::nestedEventDelivery() // QTBUG-70898 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; QQmlEngine engine;
QQmlComponent c(&engine, testFileUrl("nestedSendEvent.qml")); QQmlComponent c(&engine, testFileUrl("nestedSendEvent.qml"));
QScopedPointer<QQuickWindow> window(qmlobject_cast<QQuickWindow *>(c.create())); QScopedPointer<QQuickWindow> window(qmlobject_cast<QQuickWindow *>(c.create()));