aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2023-10-25 11:43:30 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-10-26 05:50:57 +0000
commit30b4086f8fcdcd54dd46b7153876ea06216e1def (patch)
treeadc7d2f45b8e047cb86864dcb26dc06e3d76ab45
parent8a70559d7e414318f1f2d210b2c04d1be4bccae8 (diff)
Skip some QQuickPopup tests on android
Since they crash, we cannot blacklist them. Pick-to: 6.5 Task-number: QTBUG-118532 Change-Id: I994e368a8bd6b1ed1a9729af873e2f03b8a86211 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit a45eceefa787698e3042a0f913927cbf9ac69768) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/quickcontrols/qquickpopup/tst_qquickpopup.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/quickcontrols/qquickpopup/tst_qquickpopup.cpp b/tests/auto/quickcontrols/qquickpopup/tst_qquickpopup.cpp
index 1632c55cbb..19add80c54 100644
--- a/tests/auto/quickcontrols/qquickpopup/tst_qquickpopup.cpp
+++ b/tests/auto/quickcontrols/qquickpopup/tst_qquickpopup.cpp
@@ -227,6 +227,10 @@ void tst_QQuickPopup::overlay_data()
void tst_QQuickPopup::overlay()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("Test crashes. See QTBUG-118532");
+#endif
+
QFETCH(QString, source);
QFETCH(bool, modal);
QFETCH(bool, dim);
@@ -2260,6 +2264,10 @@ void tst_QQuickPopup::contentChildrenChange()
void tst_QQuickPopup::doubleClickInMouseArea()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("Test crashes. See QTBUG-118532");
+#endif
+
QQuickView window;
QVERIFY(QQuickTest::showView(window, testFileUrl("doubleClickInMouseArea.qml")));