Minor tweaks to testing harness

From-SVN: r25508
This commit is contained in:
Zack Weinberg 1999-02-28 15:05:41 +00:00
parent 6efbe8353c
commit 456bf3e3b3
2 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
/* { dg-do preprocess } */
/* { dg-options "-pedantic-errors" } */
#if 0xa == 10
#error yes /* { dg-error "#error yes" "normal conversion" } */
#if 0xa != 10
#error 0xa != 10 /* { dg-bogus "#error" "normal conversion" } */
#endif
#if 077 == 63
#error yes /* { dg-error "#error yes" "normal conversion" } */
#if 077 != 63
#error 077 != 63 /* { dg-bogus "#error" "normal conversion" } */
#endif
#if 12wrt /* { dg-error "nvalid number" "invalid number" } */

View File

@ -1,12 +1,12 @@
/* { dg-do preprocess } */
/* { dg-options -pedantic-errors } */
#if 'a' == 'a' && '\001' == 1 && '\x12' == 0x12
#error yes /* { dg-error "#error yes" "basic charconst recognition" } */
#if 'a' != 'a' || '\001' != 1 || '\x12' != 0x12
#error a,1,0x12 /* { dg-bogus "#error" "basic charconst recognition" } */
#endif
#if 'a' == L'a' && L'\xfeed' == 0xfeed
#error yes /* { dg-error "#error yes" "wide charconst recognition" } */
#if 'a' != L'a' || L'\xfeed' != 0xfeed
#error L'a',0xfeed /* { dg-bogus "#error" "wide charconst recognition" } */
#endif
#if 'abcd' /* { dg-warning "multi-character character constant" "multi-character charconst" } */