diff options
Diffstat (limited to 'tests/spawn_test.cpp')
-rw-r--r-- | tests/spawn_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spawn_test.cpp b/tests/spawn_test.cpp index d7ed970ec..330946669 100644 --- a/tests/spawn_test.cpp +++ b/tests/spawn_test.cpp @@ -31,7 +31,7 @@ # if !defined(POSIX_SPAWN_SETSID) # define POSIX_SPAWN_SETSID 0 # endif -#else +#elif defined(__BIONIC__) #include <platform/bionic/reserved_signals.h> #endif @@ -379,7 +379,7 @@ TEST(spawn, posix_spawn_POSIX_SPAWN_SETPGROUP_set) { } TEST(spawn, posix_spawn_POSIX_SPAWN_SETSIGMASK) { -#if defined(__GLIBC__) +#if defined(__GLIBC__) || defined(MUSL) GTEST_SKIP() << "glibc doesn't ignore the same signals."; #else // Block SIGBUS in the parent... @@ -417,7 +417,7 @@ TEST(spawn, posix_spawn_POSIX_SPAWN_SETSIGMASK) { } TEST(spawn, posix_spawn_POSIX_SPAWN_SETSIGDEF) { -#if defined(__GLIBC__) +#if defined(__GLIBC__) || defined(MUSL) GTEST_SKIP() << "glibc doesn't ignore the same signals."; #else // Ignore SIGALRM and SIGCONT in the parent... |