aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2022-05-02 11:51:30 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-05-20 07:56:00 +0000
commit822d413ae8b2706bf1c6e10ac3931efb5edd6f0d (patch)
treeb6a4f0598cdc8eecbf79743a6783c3fc45e3bdf9 /tests
parent79fd946dba72e2b7af5a31005b4a3e1bff92cad1 (diff)
Skip crashing test in tst_qmlcppcodegen on Android
tst_QmlCppCodegen::scopeObjectDestruction() crashes on Android. Skip this test for now. Task-number: QTBUG-103044 Task-number: QTBUG-101865 Change-Id: I1d6291decf946b954bffc2378255c209126106fd Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> (cherry picked from commit bdbab58de7f905a3858811905f4ac94595ddbdeb) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
index 032a41978c..bd6fb37677 100644
--- a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
+++ b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
@@ -1362,6 +1362,10 @@ void tst_QmlCppCodegen::noQQmlData()
void tst_QmlCppCodegen::scopeObjectDestruction()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("crashes on Android, see QTBUG-103044.");
+#endif
+
QQmlEngine engine;
QQmlComponent component(&engine, QUrl(u"qrc:/TestTypes/fileDialog.qml"_qs));