summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łoś <michal.los@siili.com>2024-05-16 14:42:41 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-05-16 21:26:40 +0000
commit813d8d55887e4b838f95c0b37c474579373f231b (patch)
treeb8ee92e819381637fb87d6af8f37ae48696c702a
parent5c3cfd2eebc2cc8a11bf2b00f24e84a67a559b43 (diff)
Exclude VxWorks from qstorageinfo tests
VxWorks doesn't have implementation of QStorageInfo and uses stub. Remove tests of it from building and running, since these can't work. Task-number: QTBUG-115777 Change-Id: Idd63d20c2dda1ae09838a7d371ae5b713180cb96 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> (cherry picked from commit 062c538781be594821ae8b3c09eb3ae4f5adc6f3) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/corelib/io/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/io/CMakeLists.txt b/tests/auto/corelib/io/CMakeLists.txt
index 22eb2148f8..6fb4af4757 100644
--- a/tests/auto/corelib/io/CMakeLists.txt
+++ b/tests/auto/corelib/io/CMakeLists.txt
@@ -24,7 +24,7 @@ add_subdirectory(qloggingcategory)
add_subdirectory(qnodebug)
add_subdirectory(qsavefile)
add_subdirectory(qstandardpaths)
-if(NOT QNX)
+if(NOT QNX AND NOT VXWORKS)
add_subdirectory(qstorageinfo)
endif()
add_subdirectory(qtemporarydir)