diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1999-08-05 21:32:21 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-08-05 21:32:21 +0000 |
commit | ecd7226f3b001c80bf79ab397f478bdbc86df634 (patch) | |
tree | 619dda6242550459ec99fbebfd55e9e3463141cf /gcc | |
parent | b28f69a0a068c43cab5947f26751277f80d01411 (diff) | |
download | gcc-ecd7226f3b001c80bf79ab397f478bdbc86df634.zip gcc-ecd7226f3b001c80bf79ab397f478bdbc86df634.tar.gz gcc-ecd7226f3b001c80bf79ab397f478bdbc86df634.tar.bz2 |
new1.C, [...]: Removed XFAIL.
* new1.C, template8.C: Removed XFAIL.
* template3.C: Re-introduced XFAIL. :-(
From-SVN: r28542
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/new1.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/template3.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/template8.C | 6 |
4 files changed, 10 insertions, 5 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog index d2f6277..444f7c5 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog +++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog @@ -1,3 +1,8 @@ +1999-08-05 Alexandre Oliva <oliva@dcc.unicamp.br> + + * new1.C, template8.C: Removed XFAIL. + * template3.C: Re-introduced XFAIL. :-( + 1999-08-03 Alexandre Oliva <oliva@dcc.unicamp.br> * ext1.C: New test. diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/new1.C b/gcc/testsuite/g++.old-deja/g++.oliva/new1.C index 8cdffcc..67c050b 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/new1.C +++ b/gcc/testsuite/g++.old-deja/g++.oliva/new1.C @@ -4,7 +4,7 @@ // based on comp.std.c++ post by Alexander Schiemann <aschiem@math.uni-sb.de> -// execution test - XFAIL *-*-* +// execution test #include <new> diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/template3.C b/gcc/testsuite/g++.old-deja/g++.oliva/template3.C index e38a0c5..5071f71 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/template3.C +++ b/gcc/testsuite/g++.old-deja/g++.oliva/template3.C @@ -5,7 +5,7 @@ // by Alexandre Oliva <oliva@dcc.unicamp.br> // based on bug report by Ulf Larsson <ulf.larsson@mbow337.swipnet.se> -// fixed crash test +// crash test - XFAIL *-*-* template <class T> class C {}; class foo {} bar = bar.C(); diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/template8.C b/gcc/testsuite/g++.old-deja/g++.oliva/template8.C index 709eeef..4319b22 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/template8.C +++ b/gcc/testsuite/g++.old-deja/g++.oliva/template8.C @@ -10,9 +10,9 @@ struct B { } b; template <class T> void foo() { - b.bar<T>(); // gets bogus error - bar undeclared - XFAIL *-*-* - b.template bar<T>(); // gets bogus error - ditto - XFAIL *-*-* + b.bar<T>(); // no longer gets bogus error - bar undeclared + b.template bar<T>(); // no longer gets bogus error - ditto b.B::bar<T>(); // ok } -template void foo<void>(); // gets bogus error - XFAIL *-*-* +template void foo<void>(); // no longer gets bogus error |