From 72ba7cb1865081bbc8fefd77c9fe616157358410 Mon Sep 17 00:00:00 2001 From: Tatiana Borisova Date: Wed, 15 Dec 2021 10:39:45 +0200 Subject: [PATCH] Exclude filesystem autotests for INTEGRITY - There is no mounted partition, where we can create/delete files at runtime. Tests should be excluded for now. Pick-to: 6.2 6.3 Change-Id: I1c4db13d35da7d570c4bf787299d829e08951195 Reviewed-by: Thiago Macieira --- tests/auto/corelib/io/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/corelib/io/CMakeLists.txt b/tests/auto/corelib/io/CMakeLists.txt index 040e3dcf16..f4cfc16f06 100644 --- a/tests/auto/corelib/io/CMakeLists.txt +++ b/tests/auto/corelib/io/CMakeLists.txt @@ -1,4 +1,8 @@ # Generated from io.pro. +# There is no mounted filesystem for IO testing on INTEGRITY yet. +if(INTEGRITY) + return() +endif() if(QT_FEATURE_private_tests) add_subdirectory(qabstractfileengine)