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:53 +0000
commit02e1b08d42dcbfae7493a8d862a50b7bf65ec8a7 (patch)
tree2c617057d28df1cd1d5fe3499864c57f9b15ca2c
parent2004066b0f290695ac5b5178b2236d0ad7fc09d1 (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 4687a10df2..f2d0ca547a 100644
--- a/tests/auto/CMakeLists.txt
+++ b/tests/auto/CMakeLists.txt
@@ -14,7 +14,7 @@ if(TARGET Qt::QuickTest)
add_subdirectory(core)
endif()
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)