diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-11 14:20:32 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-11 14:22:04 +0200 |
commit | 1918241b55540536fee45b3096e786b7b7f9277a (patch) | |
tree | 678709d14ef980aead49ef5b92439799e19745c6 | |
parent | a364a3a7090b82ddd30e9209df2af56e781d51e4 (diff) | |
download | glibc-1918241b55540536fee45b3096e786b7b7f9277a.zip glibc-1918241b55540536fee45b3096e786b7b7f9277a.tar.gz glibc-1918241b55540536fee45b3096e786b7b7f9277a.tar.bz2 |
tst-sprintf-errno: Update Hurd message output
03ad444e8e08 ("mach: Fix incoherency between perror and strerror")
fixesd the output of error messages, but tst-sprintf-errno.c was still
checking the old (erroneous) format. This updates the expected output
according to the 03ad444e8e08 fix.
-rw-r--r-- | stdio-common/tst-sprintf-errno.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-sprintf-errno.c b/stdio-common/tst-sprintf-errno.c index ca1214c..91b1f14 100644 --- a/stdio-common/tst-sprintf-errno.c +++ b/stdio-common/tst-sprintf-errno.c @@ -50,7 +50,7 @@ do_test (void) errno = -1; #ifdef __GNU__ TEST_COMPARE (sprintf (buf, "%m"), 35); - TEST_COMPARE_STRING (buf, "Error in unknown error system: : -1"); + TEST_COMPARE_STRING (buf, "Error in unknown error system: FFFFFFFF"); #else TEST_COMPARE (sprintf (buf, "%m"), 16); TEST_COMPARE_STRING (buf, "Unknown error -1"); |