instantiate2.C: XFAIL for HPUX too since its linker doesn't give line numbers either.
authorJeffrey A Law <law@cygnus.com>
Thu, 26 Apr 2001 17:13:04 +0000 (17:13 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 26 Apr 2001 17:13:04 +0000 (11:13 -0600)
        * g++.old-deja/g++.ext/instantiate2.C: XFAIL for HPUX too since
        its linker doesn't give line numbers either.
        * g++.old-deja/g++.ext/instantiate3.C: Similarly.

From-SVN: r41597

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C
gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C

index 23436f9e1e1dc68ea8617ab0dba624a812dc357d..8839c39125e751f80ac141a63cf4095dae75d267 100644 (file)
@@ -1,3 +1,9 @@
+Thu Apr 26 11:15:12 2001  Jeffrey A Law  (law@cygnus.com)
+
+       * g++.old-deja/g++.ext/instantiate2.C: XFAIL for HPUX too since
+       its linker doesn't give line numbers either.
+       * g++.old-deja/g++.ext/instantiate3.C: Similarly.
+
 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
 
        * g++.old-deja/g++.other/lex1.C: New test.
index 9a783a14b63a2cf7483761c370b284a405953df3..805233248b24319db2db69030eb6740a06e2b049 100644 (file)
@@ -16,8 +16,9 @@ static template struct A<int>;
 
 void test_int() { A<int>::t = 42; } // gets bogus error
 
-void test_char() { A<char>::t = 42; } // ERROR - not instantiated XFAIL *-*-irix*
+void test_char() { A<char>::t = 42; } // ERROR - not instantiated XFAIL *-*-irix* *-*-hpux*
 // Irix's default linker does not produce line numbers so XFAIL it.
+// Similarly for HP's linker
 
 int main ()
 {
index 92ad16dfd4517c1fecae7d166a53bb8cd71e2a87..18d5a579c88cfdcb0bd35ca6dc0607f1623cc6ec 100644 (file)
@@ -10,9 +10,10 @@ template <class T> struct A {
 inline template struct A<int>;
 
 A<int> a;                      // gets bogus error
-A<char> b;                     // ERROR - not instantiated XFAIL mips*-*-*
+A<char> b;                     // ERROR - not instantiated XFAIL mips*-*-* *-*-hpux*
                                // Irix's default linker does not
                                // produce line numbers so XFAIL it.
+                               // Similarly for HPUX.
 
 int main ()
 {