From: Tamar Christina Date: Wed, 1 Apr 2020 17:31:22 +0000 (+0100) Subject: Arm: Skip Thumb2 PLT tests on NaCL. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=3ce23ca1de4c769c4b7247f0724a10ef5fb24a11;p=deliverable%2Fbinutils-gdb.git 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. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index b1e9f530c1..1395fb24dc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2020-04-01 Tamar Christina + + PR ld/16017 + * testsuite/ld-arm/arm-elf.exp (thumb-plt, thumb-plt-got): Skip for NaCL. + 2020-04-01 Nick Clifton PR ld/25747 diff --git a/ld/testsuite/ld-arm/arm-elf.exp b/ld/testsuite/ld-arm/arm-elf.exp index 59e68de800..0bd4ccac10 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" +}