From: Alexandre Oliva Date: Sat, 10 Oct 1998 11:50:22 +0000 (+0000) Subject: these XFAILs are hard to get right on the first try. X-Git-Tag: prereleases/libgcj-0.1~2621 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3aeab4377c353ea79fce325761a12892980412d5;p=thirdparty%2Fgcc.git these XFAILs are hard to get right on the first try. these XFAILs are hard to get right on the first try. Yet harder when results are different on different platforms :-) From-SVN: r22976 --- diff --git a/gcc/testsuite/g++.old-deja/g++.other/using6.C b/gcc/testsuite/g++.old-deja/g++.other/using6.C index 2cdaf670215f..8e518ac95dde 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/using6.C +++ b/gcc/testsuite/g++.old-deja/g++.other/using6.C @@ -3,11 +3,13 @@ // Based on bug report by Klaus-Georg Adams // +// crash test - XFAIL *-*-* + struct bar { typedef bar t; }; struct foo : bar { using bar::t; - t baz(); // syntax error?!? - XFAIL *-*-* + t baz(); // gets bogus error - XFAIL *-*-* }; diff --git a/gcc/testsuite/g++.old-deja/g++.other/using7.C b/gcc/testsuite/g++.old-deja/g++.other/using7.C index 5c54f80b9a15..76af0de7b062 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/using7.C +++ b/gcc/testsuite/g++.old-deja/g++.other/using7.C @@ -3,11 +3,13 @@ // Based on bug report by Klaus-Georg Adams // +// crash test - XFAIL *-*-* + struct bar { typedef bar t; }; struct foo : bar { using bar::t; - t baz; // syntax error?!? - XFAIL *-*-* + t baz; // gets bogus error - XFAIL *-*-* };