diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-07-07 21:24:48 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-07-07 21:24:50 +0000 |
commit | 5549370a73c45b12621a1abe58920771278a72b4 (patch) | |
tree | a2229774daa654bcb2bf6477e6321e14c374ded3 /string | |
parent | d63387d81d575ba8187345d216070595bd58cb2b (diff) | |
download | glibc-5549370a73c45b12621a1abe58920771278a72b4.tar.gz glibc-5549370a73c45b12621a1abe58920771278a72b4.tar.xz glibc-5549370a73c45b12621a1abe58920771278a72b4.zip |
tst-strsignal: fix checking for RT signals support
* string/tst-strsignal.c (do_test): Actually check that RT signals are available by comparing SIGRTMAX to SIGRTMIN. Check that SIGRTMAX is 64 before testing for a message reporting 65 for SIGRTMAX+1.
Diffstat (limited to 'string')
-rw-r--r-- | string/tst-strsignal.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/string/tst-strsignal.c b/string/tst-strsignal.c index 93a46dbc78..3f6764989f 100644 --- a/string/tst-strsignal.c +++ b/string/tst-strsignal.c @@ -34,10 +34,12 @@ do_test (void) TEST_COMPARE_STRING (strsignal (SIGINT), "Interrupt"); TEST_COMPARE_STRING (strsignal (-1), "Unknown signal -1"); #ifdef SIGRTMIN - TEST_COMPARE_STRING (strsignal (SIGRTMIN), "Real-time signal 0"); + if (SIGRTMIN < SIGRTMAX) + TEST_COMPARE_STRING (strsignal (SIGRTMIN), "Real-time signal 0"); #endif #ifdef SIGRTMAX - TEST_COMPARE_STRING (strsignal (SIGRTMAX+1), "Unknown signal 65"); + if (SIGRTMAX == 64) + TEST_COMPARE_STRING (strsignal (SIGRTMAX+1), "Unknown signal 65"); #endif xsetlocale (LC_ALL, "pt_BR.UTF-8"); @@ -45,10 +47,12 @@ do_test (void) TEST_COMPARE_STRING (strsignal (SIGINT), "Interrup\xc3\xa7\xc3\xa3\x6f"); TEST_COMPARE_STRING (strsignal (-1), "Sinal desconhecido -1"); #ifdef SIGRTMI - TEST_COMPARE_STRING (strsignal (SIGRTMIN), "Sinal de tempo-real 0"); + if (SIGRTMIN < SIGRTMAX) + TEST_COMPARE_STRING (strsignal (SIGRTMIN), "Sinal de tempo-real 0"); #endif #ifdef SIGRTMAX - TEST_COMPARE_STRING (strsignal (SIGRTMAX+1), "Sinal desconhecido 65"); + if (SIGRTMAX == 64) + TEST_COMPARE_STRING (strsignal (SIGRTMAX+1), "Sinal desconhecido 65"); #endif return 0; |