From: Zack Weinberg Date: Thu, 1 Jun 2000 20:10:49 +0000 (+0000) Subject: compare2.c (case 12): XFAIL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1082afb6c25a9c35a1a4253215536ec267893978;p=gcc.git compare2.c (case 12): XFAIL. * gcc.dg/compare2.c (case 12): XFAIL. * gcc.dg/noreturn-1.c (foo7, foo8): XFAIL. * gcc.dg/noreturn-2.c (noreturn): XFAIL. From-SVN: r34345 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 14acbe9720a..122141d1cdd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2000-06-01 Zack Weinberg + * gcc.dg/compare2.c (case 12): XFAIL. + * gcc.dg/noreturn-1.c (foo7, foo8): XFAIL. + * gcc.dg/noreturn-2.c (noreturn): XFAIL. + * gcc.dg/cpp-tradwarn2.c: Update egrep pattern. 2000-05-29 Zack Weinberg diff --git a/gcc/testsuite/gcc.dg/compare2.c b/gcc/testsuite/gcc.dg/compare2.c index 0625eb9c3f6..34f58524990 100644 --- a/gcc/testsuite/gcc.dg/compare2.c +++ b/gcc/testsuite/gcc.dg/compare2.c @@ -30,7 +30,7 @@ void f(int x, unsigned int y) /* Statement expression with recursive ?: . */ x > ({tf; tf?64:(tf?128:256);}); /* { dg-bogus "signed and unsigned" "case 11" } */ - y > ({tf; tf?64:(tf?128:256);}); /* { dg-bogus "signed and unsigned" "case 12" } */ + y > ({tf; tf?64:(tf?128:256);}); /* { dg-bogus "signed and unsigned" "case 12" { xfail *-*-* } } */ /* Statement expression with signed ?:. */ x > ({tf; tf?64:-1;}); /* { dg-bogus "signed and unsigned" "case 13" } */ diff --git a/gcc/testsuite/gcc.dg/noreturn-1.c b/gcc/testsuite/gcc.dg/noreturn-1.c index 6e72f362bf3..c6a2a0a73f2 100644 --- a/gcc/testsuite/gcc.dg/noreturn-1.c +++ b/gcc/testsuite/gcc.dg/noreturn-1.c @@ -49,11 +49,11 @@ void foo7(void) { foo6(); -} /* { dg-bogus "warning:" "this function should not get any warnings" } */ +} /* { dg-bogus "warning:" "this function should not get any warnings" { xfail *-*-* } } */ extern void foo8(void) __attribute__ ((__noreturn__)); void foo8(void) { foo7(); -} /* { dg-warning "`noreturn' function does return" "detect return from tail call" } */ +} /* { dg-warning "`noreturn' function does return" "detect return from tail call" { xfail *-*-* } } */ diff --git a/gcc/testsuite/gcc.dg/noreturn-2.c b/gcc/testsuite/gcc.dg/noreturn-2.c index a323eacefd5..8acc1cab07a 100644 --- a/gcc/testsuite/gcc.dg/noreturn-2.c +++ b/gcc/testsuite/gcc.dg/noreturn-2.c @@ -9,4 +9,4 @@ void noreturn (int x) { abort (); -} +} /* { dg-bogus "does return" "noreturn does return" { xfail *-*-* } } */