tst-sprintf-errno: Update Hurd message length

03ad444e8e ("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 03ad444e8e fix.
This commit is contained in:
Samuel Thibault 2022-09-17 17:42:42 +02:00
parent 22c96052ac
commit 6841aed6c4
1 changed files with 1 additions and 1 deletions

View File

@ -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);