From 13dbf7542e9188809b8abde3a59d1a9d11a2b121 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 24 Aug 2024 09:54:12 -0700 Subject: [PATCH] tst_QStringApiSymmetry: disable for WASM It's failing to produce output in reasonable time and blocking the CI. Since this test is basically a syntax checker, it not being present for WASM is not a great loss. Task-number: QTBUG-128322 Change-Id: Ic49e7523af63d5819c13fffdd7a752534b77f0ab Reviewed-by: Thiago Macieira (cherry picked from commit f414505eaac5c222fc6404b9cda24fec25f68a7a) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/corelib/text/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/auto/corelib/text/CMakeLists.txt b/tests/auto/corelib/text/CMakeLists.txt index bee0c5cf44..18f4f73733 100644 --- a/tests/auto/corelib/text/CMakeLists.txt +++ b/tests/auto/corelib/text/CMakeLists.txt @@ -20,7 +20,9 @@ add_subdirectory(qregularexpression) endif() add_subdirectory(qstring) add_subdirectory(qstring_no_cast_from_bytearray) +if (NOT WASM) # QTBUG-128322 add_subdirectory(qstringapisymmetry) +endif() add_subdirectory(qstringbuilder) add_subdirectory(qstringconverter) add_subdirectory(qstringiterator)