From 813d8d55887e4b838f95c0b37c474579373f231b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=81o=C5=9B?= Date: Thu, 16 May 2024 14:42:41 +0200 Subject: [PATCH] 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 (cherry picked from commit 062c538781be594821ae8b3c09eb3ae4f5adc6f3) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/corelib/io/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/corelib/io/CMakeLists.txt b/tests/auto/corelib/io/CMakeLists.txt index 22eb2148f8c..6fb4af4757d 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)