From 3835fed84288d7800744bef29b01182318e558fd Mon Sep 17 00:00:00 2001 From: MoustaphaSaad Date: Fri, 31 May 2024 18:01:01 +0300 Subject: disable explicit_bzero because of lack of sigsuspend support on Emscripten --- tests/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0c82880..ab277dd 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -402,7 +402,8 @@ add_test(exdata_test exdata_test) # explicit_bzero # explicit_bzero relies on SA_ONSTACK, which is unavailable on Windows -if(NOT WIN32) +# explicit_bzero relies on sigsuspend, which is unavailable on Emscripten +if(NOT (WIN32 OR EMSCRIPTEN)) if(HAVE_MEMMEM) add_executable(explicit_bzero explicit_bzero.c) else() -- cgit v1.2.3-55-g6feb