From ce0d7477a91d73a642bf1f3b34eb7e89f4dfab9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pasi=20Pet=C3=A4j=C3=A4j=C3=A4rvi?= Date: Fri, 25 Mar 2022 14:48:29 +0200 Subject: [PATCH] Disable test tst_qxmlstream for QNX Copying lot of testdata over NFS to qemu image start failing with errors of "No space left on device" even there is enough space left. Pick-to: 6.2 6.3 Change-Id: I2a417ed5b8c131e0a1f68c37b1fc2446ea013304 Reviewed-by: Volker Hilsheimer --- tests/auto/corelib/serialization/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/corelib/serialization/CMakeLists.txt b/tests/auto/corelib/serialization/CMakeLists.txt index 53f59dc1a59..b779ae8106a 100644 --- a/tests/auto/corelib/serialization/CMakeLists.txt +++ b/tests/auto/corelib/serialization/CMakeLists.txt @@ -12,6 +12,6 @@ endif() if(TARGET Qt::Network) add_subdirectory(qtextstream) endif() -if(TARGET Qt::Network AND TARGET Qt::Xml AND NOT INTEGRITY) +if(TARGET Qt::Network AND TARGET Qt::Xml AND NOT INTEGRITY AND NOT QNX) add_subdirectory(qxmlstream) endif()