c90-digraph-1.c: Don't xfail.
authorRichard Henderson <rth@cygnus.com>
Sun, 30 Jul 2000 23:54:59 +0000 (16:54 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 30 Jul 2000 23:54:59 +0000 (16:54 -0700)
        * gcc.dg/c90-digraph-1.c: Don't xfail.
        * gcc.dg/compare2.c (case 10): Xfail.
        * gcc.dg/noncompile/redecl-1.c: Fix expected error message.

From-SVN: r35357

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/c90-digraph-1.c
gcc/testsuite/gcc.dg/compare2.c
gcc/testsuite/gcc.dg/noncompile/redecl-1.c

index 10d1c2371e2a7ce9de8d817689a0203248450422..12b40b756f670c31daecbaa9ab4735bc48964d41 100644 (file)
@@ -1,3 +1,9 @@
+2000-07-30  Richard Henderson  <rth@cygnus.com>
+
+       * gcc.dg/c90-digraph-1.c: Don't xfail.
+       * gcc.dg/compare2.c (case 10): Xfail.
+       * gcc.dg/noncompile/redecl-1.c: Fix expected error message.
+
 2000-07-27  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * gcc.dg/c99-main-1.c: New test.
index 463ebc21acffe5134a3ae1c115847e178a9c5449..171c0ab36a40606581f47c2ce2648584d1f5f679 100644 (file)
@@ -2,7 +2,6 @@
    mode, but not in C90 mode.  Also check correct stringizing.
 */
 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do run { xfail *-*-* } } */
 /* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
 
 #define str(x) xstr(x)
index 34f585249902cc43c42899df7000007b33943abb..a33e4aa295527247195277390500e999c0404933 100644 (file)
@@ -26,7 +26,7 @@ void f(int x, unsigned int y)
 
   /* Statement expression.  */
   x > ({tf; 64;}); /* { dg-bogus "signed and unsigned" "case 9" } */
-  y > ({tf; 64;}); /* { dg-bogus "signed and unsigned" "case 10" } */
+  y > ({tf; 64;}); /* { dg-bogus "signed and unsigned" "case 10" { xfail *-*-* } } */
 
   /* Statement expression with recursive ?: .  */
   x > ({tf; tf?64:(tf?128:256);}); /* { dg-bogus "signed and unsigned" "case 11" } */
index 64d48340f22eb5ce21265c994764519ec99b750e..65b06369ddb16182bc6004cb11664924262e79cf 100644 (file)
@@ -4,7 +4,7 @@
 int
 foo ()
 {
-  int bar; /* { dg-error "previous declaration" "previously declared" } */
+  int bar; /* { dg-error "previously declared" "previously declared" } */
   volatile int bar; /* { dg-error "redeclaration" "redeclaration" } */
 }