aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2025-07-29 11:56:06 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2025-07-29 11:56:17 +0200
commitd25fcb681f27e8d03f8116acffb855f6c4925001 (patch)
tree782f3206066f8444da15f795f3b6b47748e0c262 /sysdeps
parent03b2515065e3d700fe37741195da7c0c142d66c8 (diff)
downloadglibc-d25fcb681f27e8d03f8116acffb855f6c4925001.zip
glibc-d25fcb681f27e8d03f8116acffb855f6c4925001.tar.gz
glibc-d25fcb681f27e8d03f8116acffb855f6c4925001.tar.bz2
tst-cond23: return EXIT_UNSUPPORTED on missing clock selection
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/pthread/tst-cond23.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/tst-cond23.c b/sysdeps/pthread/tst-cond23.c
index 0a68472..a338397 100644
--- a/sysdeps/pthread/tst-cond23.c
+++ b/sysdeps/pthread/tst-cond23.c
@@ -151,7 +151,7 @@ do_test (void)
#if !defined _POSIX_CLOCK_SELECTION || _POSIX_CLOCK_SELECTION == -1
puts ("_POSIX_CLOCK_SELECTION not supported, test skipped");
- return 0;
+ return EXIT_UNSUPPORTED;
#else