diff options
author | Tamar Christina <tamar.christina@arm.com> | 2020-04-01 18:31:22 +0100 |
---|---|---|
committer | Tamar Christina <tamar.christina@arm.com> | 2020-04-01 18:36:23 +0100 |
commit | 3ce23ca1de4c769c4b7247f0724a10ef5fb24a11 (patch) | |
tree | 1fbe08f04a8ad753e1fa633d297e1efb187eb5a9 /ld/testsuite | |
parent | 60e22c1eacb0df32aeeeb78c53cfd46c53a3770f (diff) | |
download | gdb-3ce23ca1de4c769c4b7247f0724a10ef5fb24a11.zip gdb-3ce23ca1de4c769c4b7247f0724a10ef5fb24a11.tar.gz gdb-3ce23ca1de4c769c4b7247f0724a10ef5fb24a11.tar.bz2 |
Arm: Skip Thumb2 PLT tests on NaCL.
NaCL does not support dynamic linking and so these tests should be
skipped under it.
ld/ChangeLog:
PR ld/16017
* testsuite/ld-arm/arm-elf.exp (thumb-plt, thumb-plt-got): Skip for NaCL.
Diffstat (limited to 'ld/testsuite')
-rw-r--r-- | ld/testsuite/ld-arm/arm-elf.exp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ld/testsuite/ld-arm/arm-elf.exp b/ld/testsuite/ld-arm/arm-elf.exp index 59e68de..0bd4cca 100644 --- a/ld/testsuite/ld-arm/arm-elf.exp +++ b/ld/testsuite/ld-arm/arm-elf.exp @@ -1269,5 +1269,7 @@ run_dump_test "non-contiguous-arm4" run_dump_test "non-contiguous-arm5" run_dump_test "non-contiguous-arm6" -run_dump_test "thumb-plt" -run_dump_test "thumb-plt-got" +if { ![istarget "arm*-*-nacl*"] } { + run_dump_test "thumb-plt" + run_dump_test "thumb-plt-got" +} |