new1.C, [...]: Removed XFAIL.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Thu, 5 Aug 1999 21:32:21 +0000 (21:32 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Thu, 5 Aug 1999 21:32:21 +0000 (21:32 +0000)
* new1.C, template8.C: Removed XFAIL.
* template3.C: Re-introduced XFAIL.  :-(

From-SVN: r28542

gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
gcc/testsuite/g++.old-deja/g++.oliva/new1.C
gcc/testsuite/g++.old-deja/g++.oliva/template3.C
gcc/testsuite/g++.old-deja/g++.oliva/template8.C

index d2f627700d8b8597e3abafdfbb3224ebbafd0d41..444f7c5b947b5a0ee649459ff8334f89113d1806 100644 (file)
@@ -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.
index 8cdffccbb41cf29d54820b6103dff969ad7c9726..67c050b5fd6a9d131966e754f63c3f5f334843a9 100644 (file)
@@ -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>
 
index e38a0c52ba96d48e0c8460f2150725a6f849b584..5071f713fc6d727df5ea62a1cdea78e454bbc487 100644 (file)
@@ -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();
index 709eeef3365f53572d5e926cdd738248834963b0..4319b220e54b7c67528425c329cdc2f5aff345c5 100644 (file)
@@ -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