From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 5DCFB385734C; Sun, 11 Sep 2022 12:22:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5DCFB385734C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1662898941; bh=8xfRgWmwXCmqvGqyWEXLohU+we5BhT3FeP9iEmawqKc=; h=From:To:Subject:Date:From; b=Y9dbUPXuFf8iVFAm5X5sME4Swg+h6/Q7NzFubiPMy0Gg1pbtI46mf0xc1/wjAD9gx 4GcRAN3BTB7j4bQIhSf5NeBZ8cSw/+bhl36OHNiE3RCjSrhf6cM/gPNLjZyiGIl7Jo dicHwd44G4pdWPYoYk7pCCm1dTI/bEEP+XWwkfbM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] tst-sprintf-errno: Update Hurd message output X-Act-Checkin: glibc X-Git-Author: Samuel Thibault X-Git-Refname: refs/heads/master X-Git-Oldrev: a364a3a7090b82ddd30e9209df2af56e781d51e4 X-Git-Newrev: 1918241b55540536fee45b3096e786b7b7f9277a Message-Id: <20220911122221.5DCFB385734C@sourceware.org> Date: Sun, 11 Sep 2022 12:22:21 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1918241b55540536fee45b3096e786b7b7f9277a commit 1918241b55540536fee45b3096e786b7b7f9277a Author: Samuel Thibault Date: Sun Sep 11 14:20:32 2022 +0200 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. Diff: --- stdio-common/tst-sprintf-errno.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdio-common/tst-sprintf-errno.c b/stdio-common/tst-sprintf-errno.c index ca1214cde6..91b1f142fb 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");