From 7188b4f4188eca36bff53c0246ef8bb721f9ce25 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Mon, 19 Jun 2023 18:35:15 -0500 Subject: [PATCH] Fix another test to account for recent stdio changes in SysFloat. --- Tests/Conformance/C17.8.0.23.CC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Conformance/C17.8.0.23.CC b/Tests/Conformance/C17.8.0.23.CC index c288ad5..1005719 100644 --- a/Tests/Conformance/C17.8.0.23.CC +++ b/Tests/Conformance/C17.8.0.23.CC @@ -16,7 +16,7 @@ int main (void) f = fopen ("3/tmp", "wb+"); /* open input file for test */ if (f == NULL) goto Fail1; - fprintf(f, "23 -3.8E20 - e- +25e- 00002.00008e000049.9"); + fprintf(f, "23 -3.8E20 -0 0e-0 +25e-0 00002.00008e000049.9"); fclose(f); stdin = freopen ("3/tmp", "r", stdin);