aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2022-05-18 14:44:42 +0200
committerAndreas Buhr <andreas.buhr@qt.io>2022-05-19 12:38:26 +0200
commitc29202dd5b79ffd33e976c79099cf1f0b2720697 (patch)
tree19df7ce89950de89266abd4211dee1ef6d57d3e1
parent519932a4443a107cc72b03d082bf61b37bc078db (diff)
Skip crashing test in tst_qquicktext on Android
Task-number: QTBUG-103096 Task-number: QTBUG-101865 Change-Id: I6960a17eda45055733a9f04cc6897bf745a4b2f2 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 47eeefd2413d0f7baf0e1c83b651ad239ce7c8d1) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/quick/qquicktext/tst_qquicktext.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/quick/qquicktext/tst_qquicktext.cpp b/tests/auto/quick/qquicktext/tst_qquicktext.cpp
index 7d89d45f66..1f7d000bda 100644
--- a/tests/auto/quick/qquicktext/tst_qquicktext.cpp
+++ b/tests/auto/quick/qquicktext/tst_qquicktext.cpp
@@ -2374,6 +2374,10 @@ void tst_qquicktext::implicitSize_data()
void tst_qquicktext::implicitSize()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("This segfaults on Android, QTBUG-103096");
+#endif
+
QFETCH(QString, text);
QFETCH(QString, width);
QFETCH(QString, format);