diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1998-10-10 07:51:24 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1998-10-10 07:51:24 +0000 |
commit | e98791f8a6d75fcb9d08a5398b4e1a56044c811a (patch) | |
tree | e4ce336fc0fd9b119354956b7c35d2208b50e461 /gcc | |
parent | 2feb9724a17b852f8c01f63af9db786d29f86772 (diff) | |
download | gcc-e98791f8a6d75fcb9d08a5398b4e1a56044c811a.zip gcc-e98791f8a6d75fcb9d08a5398b4e1a56044c811a.tar.gz gcc-e98791f8a6d75fcb9d08a5398b4e1a56044c811a.tar.bz2 |
parse3.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs
* g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs
From-SVN: r22971
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.brendan/parse3.C | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.brendan/parse5.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.brendan/parse6.C | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6fee744..a625a21 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,9 @@ 1998-10-10 Alexandre Oliva <oliva@dcc.unicamp.br> + * g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs + * g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs + * g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs + * g++.old-deja/g++.other/using5.C: New test; using decl from base class should be usable as argument of member function * g++.old-deja/g++.other/using6.C: New test; using decl from base diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/parse3.C b/gcc/testsuite/g++.old-deja/g++.brendan/parse3.C index c346a28..8be64a3 100644 --- a/gcc/testsuite/g++.old-deja/g++.brendan/parse3.C +++ b/gcc/testsuite/g++.old-deja/g++.brendan/parse3.C @@ -18,5 +18,5 @@ A A::operator+(const A in) if (high==0) return A(); // this works else - return (A()); // this works not !! -> why ?? // ERROR - -} // ERROR - + return (A()); // this works not // gets bogus error - XFAIL *-*-* +} // gets bogus error - XFAIL *-*-* diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C b/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C index 3b311e4..81a5fe6 100644 --- a/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C +++ b/gcc/testsuite/g++.old-deja/g++.brendan/parse5.C @@ -21,5 +21,5 @@ public: int main() { unsigned char b[3]; - buf<3> b2(ptr8(&b[0],3)); // ERROR - + buf<3> b2(ptr8(&b[0],3)); // gets bogus error - XFAIL *-*-* } diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/parse6.C b/gcc/testsuite/g++.old-deja/g++.brendan/parse6.C index 5e27c58..9fcf2ad 100644 --- a/gcc/testsuite/g++.old-deja/g++.brendan/parse6.C +++ b/gcc/testsuite/g++.old-deja/g++.brendan/parse6.C @@ -9,5 +9,5 @@ class A { }; main() { A a = a; - A b(b); // ERROR - + A b(b); // gets bogus error - XFAIL *-*-* } |