diff options
| author | Andreas Buhr <andreas@andreasbuhr.de> | 2022-04-05 13:19:29 +0200 |
|---|---|---|
| committer | Andreas Buhr <andreas@andreasbuhr.de> | 2022-04-05 14:12:02 +0200 |
| commit | 598bfdb139e64c9e6fd9c8542ef457fe8091bad1 (patch) | |
| tree | d2719ad9439a666e0b379dc2c3f7a324970087f7 /tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp | |
| parent | 55c7f1ad136e1c4baa2329837b043b71240e397f (diff) | |
Repair tst_qmlcppcodegen on Android
tst_qmlcppcodegen tries to start itself again using QProcess.
This does not work on Android. This patch skips this test.
Task-number: QTBUG-101865
Pick-to: 6.2 6.3
Change-Id: Ib8f9a5e028a938949347bc8e83ea483d0228968e
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp')
| -rw-r--r-- | tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp | 4 |
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 3af0ebe6da..02411f8b9a 100644 --- a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp +++ b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp @@ -1984,6 +1984,10 @@ void tst_QmlCppCodegen::evadingAmbiguity() void tst_QmlCppCodegen::runInterpreted() { +#ifdef Q_OS_ANDROID + QSKIP("Can't start QProcess to run a custom user binary on Android"); +#endif + if (qEnvironmentVariableIsSet("QV4_FORCE_INTERPRETER")) QSKIP("Already running in interpreted mode"); |
