diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2019-01-29 10:11:01 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2019-01-29 10:17:34 +0100 |
commit | d43a04899779ad5b7d83ded8e0b3d124ccbac6fb (patch) | |
tree | f48fe40f65dd18eb9b7091ea25ede4d41544b1ed | |
parent | 595d73421b2f56d343c8e0f32cef8c073f3dad70 (diff) | |
download | gdb-d43a04899779ad5b7d83ded8e0b3d124ccbac6fb.zip gdb-d43a04899779ad5b7d83ded8e0b3d124ccbac6fb.tar.gz gdb-d43a04899779ad5b7d83ded8e0b3d124ccbac6fb.tar.bz2 |
Skip ld/pr23169 on SPARC.
The test is already skipped on PowerPC and Aarch64 because it's invalid.
* testsuite/ld-ifunc/ifunc.exp: Skip pr23169 on SPARC.
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-ifunc/ifunc.exp | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 38963b9..fcc8aed 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2019-01-29 Eric Botcazou <ebotcazou@adacore.com> + + * testsuite/ld-ifunc/ifunc.exp: Skip pr23169 on SPARC. + 2018-11-30 Alan Modra <amodra@gmail.com> * testsuite/ld-powerpc/pr23937.d, diff --git a/ld/testsuite/ld-ifunc/ifunc.exp b/ld/testsuite/ld-ifunc/ifunc.exp index 86892b9..2b97af7 100644 --- a/ld/testsuite/ld-ifunc/ifunc.exp +++ b/ld/testsuite/ld-ifunc/ifunc.exp @@ -713,7 +713,9 @@ run_ld_link_exec_tests [list \ # That does not happen for the pr23169 testcase where the resolver is # in the executable (which is relocated last by ld.so). if { [isnative] - && !([istarget "powerpc-*-*"] || [istarget "aarch64*-*-*"]) } { + && !([istarget "powerpc-*-*"] + || [istarget "aarch64*-*-*"] + || [istarget "sparc*-*-*"]) } { run_ld_link_exec_tests [list \ [list \ "Run pr23169a" \ |