From f5d5b8800296e67b182cc3f9388e9008d73d62b6 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Mon, 4 Jul 2022 22:29:15 -0500 Subject: [PATCH] Correct result strings in a couple tests. --- Tests/Conformance/c11uchar.c | 4 ++-- Tests/Conformance/c11unicode.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/Conformance/c11uchar.c b/Tests/Conformance/c11uchar.c index c7687c3..98044f4 100644 --- a/Tests/Conformance/c11uchar.c +++ b/Tests/Conformance/c11uchar.c @@ -69,9 +69,9 @@ int main(void) { goto Fail; #endif - printf ("Passed Conformance Test c99uchar\n"); + printf ("Passed Conformance Test c11uchar\n"); return 0; Fail: - printf ("Failed Conformance Test c99uchar\n"); + printf ("Failed Conformance Test c11uchar\n"); } diff --git a/Tests/Conformance/c11unicode.c b/Tests/Conformance/c11unicode.c index 9f431ad..32f20ac 100644 --- a/Tests/Conformance/c11unicode.c +++ b/Tests/Conformance/c11unicode.c @@ -61,9 +61,9 @@ int main(void) { s32[3] != 0x010085 || s32[4] != 0x000000) goto Fail; - printf ("Passed Conformance Test c99unicode\n"); + printf ("Passed Conformance Test c11unicode\n"); return 0; Fail: - printf ("Failed Conformance Test c99unicode\n"); + printf ("Failed Conformance Test c11unicode\n"); }