aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPasi Petäjäjärvi <pasi.petajajarvi@qt.io>2022-01-26 16:52:18 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-01-29 14:50:50 +0000
commit6d96012a6ad99993bc162b6dd71f2bb23f96d035 (patch)
tree5d7a9d4f55b21c829e33b6c42b560b0289dc6857 /tests
parent5944a87eb32edfa02db8d25c7f0c43505bb974c1 (diff)
QNX: Disable ecmascriptests
For QNX tests are run on qemu which is slow so the tests will always timeout. As currently timeout is set to env via CMakeLists.txt it does not have effect on QNX as that env variable is not passed over SSH connection. Running tests on QNX qemu takes ~30min: PASS : tst_EcmaScriptTests::cleanupTestCase() Totals: 4 passed, 0 failed, 0 skipped, 0 blacklisted, 1782249ms Change-Id: Ief1ccb05ce21bf3140554272708c95ca5515bc23 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> (cherry picked from commit 856df4380a467d0a5554232d213d549fe8a94d0d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/CMakeLists.txt b/tests/auto/qml/CMakeLists.txt
index 981042c9ca..e3b6312823 100644
--- a/tests/auto/qml/CMakeLists.txt
+++ b/tests/auto/qml/CMakeLists.txt
@@ -108,7 +108,7 @@ if(QT_FEATURE_private_tests)
add_subdirectory(qv4mm)
add_subdirectory(qv4identifiertable)
add_subdirectory(qv4regexp)
- if(QT_FEATURE_process)
+ if(QT_FEATURE_process AND NOT QNX)
add_subdirectory(ecmascripttests)
endif()
add_subdirectory(bindingdependencyapi)