diff --git a/src/tests/once-test.c b/src/tests/once-test.c index f14d2edc6..fbb914c36 100644 --- a/src/tests/once-test.c +++ b/src/tests/once-test.c @@ -39,6 +39,8 @@ #include #include +#define EXIT_FAILURE_SKIP 77 + static pa_once once = PA_ONCE_INIT; static volatile unsigned n_run = 0; static const char * volatile ran_by = NULL; @@ -139,5 +141,5 @@ int main(int argc, char *argv[]) { failed = srunner_ntests_failed(sr); srunner_free(sr); - return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE; + return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE_SKIP; }