Skip to content

Commit 992ec41

Browse files
committed
Disable wasm tests in windows with address sanitizer.
1 parent 803b6bd commit 992ec41

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

source/tests/metacall_wasm_test/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ set_property(TEST ${target}
139139
PROPERTY LABELS ${target}
140140
)
141141

142+
if(WIN32 AND OPTION_BUILD_ADDRESS_SANITIZER)
143+
# TODO: This test segfaults in windows when run with addres sanitizer without any output
144+
return()
145+
endif()
146+
142147
if(OPTION_BUILD_THREAD_SANITIZER)
143148
# TODO: This test fails when run with thread sanitizer:
144149
#

0 commit comments

Comments
 (0)