From e5c23db60c385d1a154a8dc58e98260d8e7d3a67 Mon Sep 17 00:00:00 2001 From: Ivan Solovev Date: Mon, 28 Feb 2022 14:41:28 +0100 Subject: [PATCH] Android: temporary skip tst_QDialog::dialogInGraphicsView This test crashed and prevents other testcases from execution. The test requires a proper fix, but that's not trivial, so skipping to enable more tests in the CI for now. Task-number: QTBUG-101321 Pick-to: 6.3 6.2 Change-Id: I1bd4b1182cc868a36391a718457eae647675fc17 Reviewed-by: Andreas Buhr --- tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp b/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp index 08c3972843..8063f0ae47 100644 --- a/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp +++ b/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp @@ -561,6 +561,10 @@ void tst_QDialog::transientParent() void tst_QDialog::dialogInGraphicsView() { +#ifdef Q_OS_ANDROID + // QTBUG-101321 + QSKIP("This test crashes on Android"); +#endif // QTBUG-49124: A dialog embedded into QGraphicsView has Qt::WA_DontShowOnScreen // set (as has a native dialog). It must not trigger the modal handling though // as not to lock up.