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.
This commit is contained in:
Stephen Heumann 2017-09-14 23:35:01 -05:00
parent 275a2cc176
commit 75bb522025
2 changed files with 0 additions and 16 deletions

View File

@ -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");
}

View File

@ -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