From 75bb5220251fd7d6ffa09e6ca76c4fc7d0206c83 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Thu, 14 Sep 2017 23:35:01 -0500 Subject: [PATCH] Remove a test that checked that multi-char character constants are not allowed. This test is no longer valid since such constants are now accepted, consistent with the C standards. --- Tests/Deviance/D2.7.3.2.CC | 15 --------------- Tests/Deviance/DOIT | 1 - 2 files changed, 16 deletions(-) delete mode 100644 Tests/Deviance/D2.7.3.2.CC diff --git a/Tests/Deviance/D2.7.3.2.CC b/Tests/Deviance/D2.7.3.2.CC deleted file mode 100644 index 5052597..0000000 --- a/Tests/Deviance/D2.7.3.2.CC +++ /dev/null @@ -1,15 +0,0 @@ -/* Deviance Test 2.7.3.2: Ensure character constants contain only 1 charactr */ - -/* PAGE 20: DRAFT ANSI C PERMITS MULTIPLE CHAR CONSTANTS -- VALUE IS */ -/* IMPLEMENTATION DEFINED */ - -main () - { - char a; - - a = 'ab'; - a = '\t\n'; - a = '\006HELP'; - - printf ("Failed Deviance Test 2.7.3.2\n"); - } diff --git a/Tests/Deviance/DOIT b/Tests/Deviance/DOIT index fc64a0e..b37e43e 100644 --- a/Tests/Deviance/DOIT +++ b/Tests/Deviance/DOIT @@ -7,7 +7,6 @@ {1} D2.7.1.2.CC {1} D2.7.2.1.CC {1} D2.7.3.1.CC -{1} D2.7.3.2.CC {1} D2.7.3.3.CC {1} D2.7.4.1.CC {1} D2.7.4.4.CC