diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-15 15:52:41 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-17 19:17:41 +0100 |
commit | 9702a41cee31e3588e46485a5db06d1d7c222d30 (patch) | |
tree | 821082023cc14e6704589afd7bc261b516bc44b6 /rt/tst-mqueue8.c | |
parent | 5f3a7ebc358fdcbafcab4f1bf4067120fb519dfc (diff) | |
download | glibc-9702a41cee31e3588e46485a5db06d1d7c222d30.tar glibc-9702a41cee31e3588e46485a5db06d1d7c222d30.tar.gz glibc-9702a41cee31e3588e46485a5db06d1d7c222d30.tar.bz2 glibc-9702a41cee31e3588e46485a5db06d1d7c222d30.zip |
rt/tst-mqueue*: Return UNSUPPORTED when mq_open fails with ENOSYS
Rather than returning 0 or a failure.
Diffstat (limited to 'rt/tst-mqueue8.c')
-rw-r--r-- | rt/tst-mqueue8.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rt/tst-mqueue8.c b/rt/tst-mqueue8.c index da1e7644e6..b14cde1188 100644 --- a/rt/tst-mqueue8.c +++ b/rt/tst-mqueue8.c @@ -23,6 +23,7 @@ #include <unistd.h> #if _POSIX_THREADS # include <pthread.h> +# include <support/check.h> static pthread_barrier_t b; @@ -95,8 +96,11 @@ do_test (void) if (q == (mqd_t) -1) { + if (errno == ENOSYS) + FAIL_UNSUPPORTED ("mq_open not supported"); + printf ("mq_open failed with: %m\n"); - return 0; + return 1; } if (mq_unlink (name) != 0) |