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>
This commit is contained in:
Andreas Buhr 2022-05-02 11:51:30 +02:00
parent 31ed595490
commit bdbab58de7
1 changed files with 4 additions and 0 deletions

View File

@ -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));