diff options
-rw-r--r-- | tests/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
402 | 402 | ||
403 | # explicit_bzero | 403 | # explicit_bzero |
404 | # explicit_bzero relies on SA_ONSTACK, which is unavailable on Windows | 404 | # explicit_bzero relies on SA_ONSTACK, which is unavailable on Windows |
405 | if(NOT WIN32) | 405 | # explicit_bzero relies on sigsuspend, which is unavailable on Emscripten |
406 | if(NOT (WIN32 OR EMSCRIPTEN)) | ||
406 | if(HAVE_MEMMEM) | 407 | if(HAVE_MEMMEM) |
407 | add_executable(explicit_bzero explicit_bzero.c) | 408 | add_executable(explicit_bzero explicit_bzero.c) |
408 | else() | 409 | else() |