From eb84869320af31525e1bf5e6da5b55c2f64a6629 Mon Sep 17 00:00:00 2001 From: Rokashevich Svetlana Date: Fri, 29 Aug 2025 16:03:10 +0800 Subject: [PATCH] Disable tests sanitizers build Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICVIQD Signed-off-by: Rokashevich Svetlana Change-Id: Iaa0cf4cf8bcb8185858cad157c778a4cfe1c796e --- .../test/test-lists/parser/parser-ets-ignored-ASAN.txt | 2 -- ets2panda/test/unit/lsp/CMakeLists.txt | 9 ++++++--- 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 ets2panda/test/test-lists/parser/parser-ets-ignored-ASAN.txt diff --git a/ets2panda/test/test-lists/parser/parser-ets-ignored-ASAN.txt b/ets2panda/test/test-lists/parser/parser-ets-ignored-ASAN.txt deleted file mode 100644 index 785a836b53..0000000000 --- a/ets2panda/test/test-lists/parser/parser-ets-ignored-ASAN.txt +++ /dev/null @@ -1,2 +0,0 @@ -# Issue: ##29234 -parser/ets/dynamic_import_tests/dynamic_optional_decl.ets diff --git a/ets2panda/test/unit/lsp/CMakeLists.txt b/ets2panda/test/unit/lsp/CMakeLists.txt index 2ec6e27320..43a1c7a19c 100644 --- a/ets2panda/test/unit/lsp/CMakeLists.txt +++ b/ets2panda/test/unit/lsp/CMakeLists.txt @@ -367,9 +367,12 @@ ets2panda_add_gtest(lsp_api_get_definition_from_node_test CPP_SOURCES get_definition_from_node_test.cpp ) -ets2panda_add_gtest(lsp_api_spelling_test CPP_SOURCES - fix_spelling_test.cpp -) +# NOTE(@srokashevich, #29405): enable with tsan after fix +if (NOT PANDA_ENABLE_THREAD_SANITIZER) + ets2panda_add_gtest(lsp_api_spelling_test CPP_SOURCES + fix_spelling_test.cpp + ) +endif() ets2panda_add_gtest(lsp_api_get_node_expression_test CPP_SOURCES get_node_expression_test.cpp -- Gitee