diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2003-10-07 17:30:02 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2003-10-07 17:30:02 +0000 |
commit | c0d48c0b487a3d7f926a2fef24e9b2fd401b3bc4 (patch) | |
tree | 3dfa01e5eedd125afe5a5080e65a3e2a5ddb3522 /ld/testsuite/ld-elfvsb | |
parent | aec24853b5d0ec94dd440c674d0c869c24b53e0b (diff) | |
download | gdb-c0d48c0b487a3d7f926a2fef24e9b2fd401b3bc4.zip gdb-c0d48c0b487a3d7f926a2fef24e9b2fd401b3bc4.tar.gz gdb-c0d48c0b487a3d7f926a2fef24e9b2fd401b3bc4.tar.bz2 |
* configure.host (HOSTING_LIBS): Define for hppa*-*-linux*.
* ld-elfvsb/elfvsb.exp: xfail non-pic shared library tests for
non 64-bit hppa*-*-linux* targets.
* ld-elfvsb/main.c (main_visibility_check): Cast value returned by
visibility_funptr () to a function pointer.
* ld-shared/shared.exp: xfail shared (non PIC), shared (non PIC, load
offset), and shared (PIC main, non PIC so) tests for non 64-bit
hppa*-*-linux* targets.
Diffstat (limited to 'ld/testsuite/ld-elfvsb')
-rw-r--r-- | ld/testsuite/ld-elfvsb/elfvsb.exp | 11 | ||||
-rw-r--r-- | ld/testsuite/ld-elfvsb/main.c | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/ld/testsuite/ld-elfvsb/elfvsb.exp b/ld/testsuite/ld-elfvsb/elfvsb.exp index 9f0073a..f1f3f1f 100644 --- a/ld/testsuite/ld-elfvsb/elfvsb.exp +++ b/ld/testsuite/ld-elfvsb/elfvsb.exp @@ -263,6 +263,9 @@ proc visibility_run {visibility} { setup_xfail "s390x-*-linux*" } setup_xfail "x86_64-*-linux*" + if { ![istarget hppa*64*-*-linux*] } { + setup_xfail "hppa*-*-linux*" + } visibility_test $visibility vnp "visibility ($visibility) (non PIC)" mainnp.o sh1np.o sh2np.o elfvsb @@ -294,6 +297,10 @@ proc visibility_run {visibility} { setup_xfail "mips*-*-linux*" } setup_xfail "x86_64-*-linux*" + if { ![istarget hppa*64*-*-linux*] } { + setup_xfail "hppa*-*-linux*" + } + visibility_test $visibility vnp "visibility ($visibility) (non PIC, load offset)" \ mainnp.o sh1np.o sh2np.o elfvsb \ "-T $srcdir/$subdir/elf-offset.ld" @@ -353,6 +360,10 @@ proc visibility_run {visibility} { setup_xfail "s390x-*-linux*" } setup_xfail "x86_64-*-linux*" + if { ![istarget hppa*64*-*-linux*] } { + setup_xfail "hppa*-*-linux*" + } + visibility_test $visibility vmpnp "visibility ($visibility) (PIC main, non PIC so)" mainp.o sh1np.o sh2np.o elfvsb } } else { diff --git a/ld/testsuite/ld-elfvsb/main.c b/ld/testsuite/ld-elfvsb/main.c index 1ce2e3e..f071260 100644 --- a/ld/testsuite/ld-elfvsb/main.c +++ b/ld/testsuite/ld-elfvsb/main.c @@ -82,7 +82,7 @@ visibility () static int main_visibility_check () { - return visibility_funptr () != visibility; + return ((int (*) (void)) visibility_funptr ()) != visibility; } int visibility_var = 1; @@ -117,7 +117,7 @@ main_visibility_check () #ifdef WEAK_TEST return visibility_funptr () == NULL; #else - return visibility_funptr () == visibility; + return ((int (*) (void)) visibility_funptr ()) == visibility; #endif } |