This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Testsuite PATCH: XFAIL attrib5.C on PA HP-UX
- From: Mark Mitchell <mark at codesourcery dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Fri, 22 Aug 2003 18:52:07 -0700
- Subject: Testsuite PATCH: XFAIL attrib5.C on PA HP-UX
- Reply-to: mark at codesourcery dot com
This test (for the simultaneous use of "weak" and "alias" attributes)
fails on PA HP-UX in 32-bit mode; the SOM object model doesn't support
that.
Tested on hppa2.0w-hp-hpux11.11 and hppa64-hp-hpux11.11, installed on
the mainline and on the branch. (The mainline patch is slightly
different than shown here because the C++ testsuite is now all using
the "dg" driver.)
--
Mark Mitchell
CodeSourcery, LLC
mark@codesourcery.com
2003-08-22 Mark Mitchell <mark@codesourcery.com>
* g++.old-deja/g++.ext/attrib5.C: XFAIL on hppa2*-hp-hpux11*.
Index: testsuite/g++.old-deja/g++.ext/attrib5.C
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/g++.old-deja/g++.ext/attrib5.C,v
retrieving revision 1.7
diff -c -5 -p -r1.7 attrib5.C
*** testsuite/g++.old-deja/g++.ext/attrib5.C 6 Feb 2002 12:15:53 -0000 1.7
--- testsuite/g++.old-deja/g++.ext/attrib5.C 23 Aug 2003 01:52:01 -0000
***************
*** 1,7 ****
// Test that attributes weak and alias coexist.
! // excess errors test - XFAIL alpha*-dec-osf* *-*-hms i?86-pc-cygwin *-*-coff
extern "C" {
void f () __attribute__((weak, alias ("_f")));
void _f () { }
}
--- 1,7 ----
// Test that attributes weak and alias coexist.
! // excess errors test - XFAIL alpha*-dec-osf* *-*-hms i?86-pc-cygwin *-*-coff hppa2*-hp-hpux11*
extern "C" {
void f () __attribute__((weak, alias ("_f")));
void _f () { }
}