[hurd,commited] tst-sprintf-errno: Update Hurd message length

Message ID 20220917154328.1643906-1-samuel.thibault@ens-lyon.org
State Committed, archived
Headers
Series [hurd,commited] tst-sprintf-errno: Update Hurd message length |

Checks

Context Check Description
dj/TryBot-apply_patch fail Patch failed to apply to master at the time it was sent
dj/TryBot-32bit fail Patch series failed to apply

Commit Message

Samuel Thibault Sept. 17, 2022, 3:43 p.m. UTC
  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.
---
 stdio-common/tst-sprintf-errno.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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