From 8838ac1c9e05baa269fb50ebaa3318925b4df55b Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Thu, 5 Oct 2023 14:26:32 +0100 Subject: Fix: ld testsuite: glibc-specific DT_RELR tests should not be run on musl systems PR 30917 * testsuite/ld-elf/dt-relr.exp: Skip for MUSL targets. --- ld/ChangeLog | 5 +++++ ld/testsuite/ld-elf/dt-relr.exp | 4 ++++ 2 files changed, 9 insertions(+) (limited to 'ld') diff --git a/ld/ChangeLog b/ld/ChangeLog index a9c87bd..4009d2c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2023-10-05 A. Wilcox w + PR 30917 + * testsuite/ld-elf/dt-relr.exp: Skip for MUSL targets. + +2023-10-05 A. Wilcox w + PR 30918 * testsuite/ld-shared/shared.exp: Add XFAILs for tests that fail with the MUSL library. diff --git a/ld/testsuite/ld-elf/dt-relr.exp b/ld/testsuite/ld-elf/dt-relr.exp index f7d9901..c8d937b 100644 --- a/ld/testsuite/ld-elf/dt-relr.exp +++ b/ld/testsuite/ld-elf/dt-relr.exp @@ -23,6 +23,10 @@ if { ![supports_dt_relr] } { return } +if { [istarget *-*-musl*] } { + return +} + run_cc_link_tests [list \ [list \ "Build dt-relr-glibc-1a.so" \ -- cgit v1.1