aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@gcc.gnu.org>1998-10-10 11:50:22 +0000
committerAlexandre Oliva <oliva@gcc.gnu.org>1998-10-10 11:50:22 +0000
commit3aeab4377c353ea79fce325761a12892980412d5 (patch)
tree465407e2fd6af4312b52b69fd3ae3c0df3e86b90
parent066d147cbfa46e524a8016aed2ac4b449400126b (diff)
downloadgcc-3aeab4377c353ea79fce325761a12892980412d5.zip
gcc-3aeab4377c353ea79fce325761a12892980412d5.tar.gz
gcc-3aeab4377c353ea79fce325761a12892980412d5.tar.bz2
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
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/using6.C4
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/using7.C4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/using6.C b/gcc/testsuite/g++.old-deja/g++.other/using6.C
index 2cdaf67..8e518ac 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
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
+// 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 5c54f80..76af0de 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
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
+// 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 *-*-*
};