From 2ebb3d8c3758bcb3bb69cba22a8ba61306291608 Mon Sep 17 00:00:00 2001 From: Magdalena Stojek Date: Fri, 24 Jan 2025 12:27:52 +0100 Subject: [PATCH] Disable qlocale tests on WASM in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Emscripten compiler running out of memory in CI when adding more tests to qlocale, preventing integration. Disabling the tests will allow the changes to be integrated. Task-number: QTBUG-133219 Change-Id: Ia6566fdeaae4ae54398ac8fedcbb7a225037f662 Reviewed-by: Piotr WierciƄski --- 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 bee0c5cf44c..90527a87db4 100644 --- a/tests/auto/corelib/text/CMakeLists.txt +++ b/tests/auto/corelib/text/CMakeLists.txt @@ -30,4 +30,6 @@ add_subdirectory(qstringtokenizer) add_subdirectory(qstringview) add_subdirectory(qtextboundaryfinder) add_subdirectory(qunicodetools) +if (NOT WASM) # QTBUG-133219 add_subdirectory(qlocale) +endif()