Xfail mix_pic_and_non_pic on arm and aarch64

* testsuite/ld-elf/shared.exp (mix_pic_and_non_pic): Add xfails.
	Xfail mix_pic_and_non_pic on "arm*-*-*" "aarch64*-*-*".
This commit is contained in:
H.J. Lu 2016-03-02 11:35:03 -08:00
parent fdbd04a8ad
commit 7494161b47
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2016-03-02 H.J. Lu <hongjiu.lu@intel.com>
* testsuite/ld-elf/shared.exp (mix_pic_and_non_pic): Add xfails.
Xfail mix_pic_and_non_pic on "arm*-*-*" "aarch64*-*-*".
2016-03-02 H.J. Lu <hongjiu.lu@intel.com>
PR ld/19739

View File

@ -583,7 +583,7 @@ if { [istarget *-*-linux*]
]
}
proc mix_pic_and_non_pic {cflags ldflags} {
proc mix_pic_and_non_pic {xfails cflags ldflags} {
set testname "Mixing PIC and non-PIC"
if { ![ string match "" $cflags$ldflags] } {
set testname "$testname ($cflags $ldflags)"
@ -632,6 +632,10 @@ proc mix_pic_and_non_pic {cflags ldflags} {
exec cp tmpdir/libpr19719a.so tmpdir/libpr19719.so
foreach targ $xfails {
setup_xfail $targ
}
set exec_output [run_host_cmd tmpdir/pr19719 ""]
if {![string match "PASS" $exec_output]} {
fail $testname
@ -640,5 +644,5 @@ proc mix_pic_and_non_pic {cflags ldflags} {
}
}
mix_pic_and_non_pic "" ""
mix_pic_and_non_pic "-fPIE" "-pie"
mix_pic_and_non_pic [list "arm*-*-*" "aarch64*-*-*"] "" ""
mix_pic_and_non_pic [] "-fPIE" "-pie"