aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")));