aboutsummaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-09-17 17:42:42 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-09-17 17:42:42 +0200
commit6841aed6c4abde1aa7015348496c86cadc227a1f (patch)
treeeb3aa079c070a35f7a64b819e12af769fd248949 /stdio-common
parent22c96052acf78c5f4644117bece38715fc7210cf (diff)
downloadglibc-6841aed6c4abde1aa7015348496c86cadc227a1f.tar
glibc-6841aed6c4abde1aa7015348496c86cadc227a1f.tar.gz
glibc-6841aed6c4abde1aa7015348496c86cadc227a1f.tar.bz2
glibc-6841aed6c4abde1aa7015348496c86cadc227a1f.zip
tst-sprintf-errno: Update Hurd message length
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 length. This updates the expected output length according to the 03ad444e8e08 fix.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/tst-sprintf-errno.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-sprintf-errno.c b/stdio-common/tst-sprintf-errno.c
index 91b1f142fb..13e7ed28f0 100644
--- a/stdio-common/tst-sprintf-errno.c
+++ b/stdio-common/tst-sprintf-errno.c
@@ -49,7 +49,7 @@ do_test (void)
errno = -1;
#ifdef __GNU__
- TEST_COMPARE (sprintf (buf, "%m"), 35);
+ TEST_COMPARE (sprintf (buf, "%m"), 39);
TEST_COMPARE_STRING (buf, "Error in unknown error system: FFFFFFFF");
#else
TEST_COMPARE (sprintf (buf, "%m"), 16);