summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/dialogs
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2022-02-28 14:41:28 +0100
committerIvan Solovev <ivan.solovev@qt.io>2022-03-02 12:14:26 +0100
commite5c23db60c385d1a154a8dc58e98260d8e7d3a67 (patch)
treebe0ea0b94f52fdcd213fb9ac79343d147ca782fc /tests/auto/widgets/dialogs
parentef22545184c173ae5b815c63f56e78af5290a3d7 (diff)
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 <andreas.buhr@qt.io>
Diffstat (limited to 'tests/auto/widgets/dialogs')
-rw-r--r--tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp4
1 files changed, 4 insertions, 0 deletions
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.