From: Zack Weinberg Date: Sun, 28 Feb 1999 15:05:41 +0000 (+0000) Subject: Minor tweaks to testing harness X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=456bf3e3b353b0dd7ddcbc337c161448faaa1b12;p=gcc.git Minor tweaks to testing harness From-SVN: r25508 --- diff --git a/gcc/testsuite/gcc.dg/cpp-if1.c b/gcc/testsuite/gcc.dg/cpp-if1.c index e33c1a0a1e9..be0f6182836 100644 --- a/gcc/testsuite/gcc.dg/cpp-if1.c +++ b/gcc/testsuite/gcc.dg/cpp-if1.c @@ -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" } */ diff --git a/gcc/testsuite/gcc.dg/cpp-if2.c b/gcc/testsuite/gcc.dg/cpp-if2.c index 32880e2a2a1..60e8ffd22dc 100644 --- a/gcc/testsuite/gcc.dg/cpp-if2.c +++ b/gcc/testsuite/gcc.dg/cpp-if2.c @@ -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" } */