aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2022-05-02 11:51:30 +0200
committerAndreas Buhr <andreas.buhr@qt.io>2022-05-03 15:25:11 +0200
commitbdbab58de7f905a3858811905f4ac94595ddbdeb (patch)
tree2b6551b5278e0c6210b17bc1a6d6fd618d6ef24c /tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
parent31ed5954902741ce4c810aa6d44319af9c965378 (diff)
Skip crashing test in tst_qmlcppcodegen on Android
tst_QmlCppCodegen::scopeObjectDestruction() crashes on Android. Skip this test for now. Pick-to: 6.2 6.3 Task-number: QTBUG-103044 Task-number: QTBUG-101865 Change-Id: I1d6291decf946b954bffc2378255c209126106fd Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp')
-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 cd528a2970..c398f6c310 100644
--- a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
+++ b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
@@ -1367,6 +1367,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"_s));