From: Alexandre Oliva Date: Thu, 3 Dec 1998 11:24:23 +0000 (+0000) Subject: * g++.old-deja/g++.pt/spec20.C: ERROR marks were bogus X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=174a498bcadd6c3410875a810c615511f6b9fa44;p=gcc.git * g++.old-deja/g++.pt/spec20.C: ERROR marks were bogus From-SVN: r24070 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d7063a12ef8..621a6254a6a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,7 @@ 1998-12-03 Alexandre Oliva + * g++.old-deja/g++.pt/spec20.C: ERROR marks were bogus + * lib/old-dejagnu.exp (old-dejagnu): ignore collect recompiling and relinking messages * lib/g++.exp (g++_target_compile): remove .rpo file when diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec20.C b/gcc/testsuite/g++.old-deja/g++.pt/spec20.C index 497a32d7554..9cef7030a53 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/spec20.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/spec20.C @@ -1,11 +1,13 @@ // Build don't link: +// According to [temp.class.spec.mfunc]/2, these are valid + template struct S { template void f(U); - template <> void f(int); // ERROR - specialization + template <> void f(int); // gets bogus error - XFAIL *-*-* template struct I {}; template struct I {}; - template <> struct I; // ERROR - specialization + template <> struct I; // gets bogus error - XFAIL *-*-* };