aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPasi Petäjäjärvi <pasi.petajajarvi@qt.io>2022-01-25 14:16:14 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-01-29 14:50:52 +0000
commitd48644b60d78949e6278adba36912d6458d3c514 (patch)
treef555deb24d55f49c8b4bc541c1d5405c9f6e9ab2
parent29830e66893a4b5274e2d963e75625a9f527f866 (diff)
QNX: Cannot run qml only tests
QML only tests expect to run with qmltest tool and since QNX autotests are run on Qemu that does not work. Task-number: QTBUG-100202 Change-Id: I21732c312486d07e0902b9235a7f8cb84eb5e045 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit 98d4a44ecfa0c1afe3e58605f56937f20072d281) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/CMakeLists.txt b/tests/auto/CMakeLists.txt
index 5efd176e3b..af038a2453 100644
--- a/tests/auto/CMakeLists.txt
+++ b/tests/auto/CMakeLists.txt
@@ -13,7 +13,7 @@ endif()
add_subdirectory(core)
add_subdirectory(qmldevtools)
add_subdirectory(toolsupport)
-if(NOT UIKIT AND NOT ANDROID) # FIXME: QTBUG-92591
+if(NOT UIKIT AND NOT ANDROID AND NOT QNX) # FIXME: QTBUG-92591 QTBUG-100202
add_subdirectory(qmltest)
endif()
if(TARGET Qt::Quick)