From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id 146223858D32; Fri, 10 Mar 2023 16:53:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 146223858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1678467238; bh=Icdddf+lR5uvesMd5MqfvTk8GbNV49H7YvjP3hlp3DM=; h=From:To:Subject:Date:From; b=XAvOQt84mOwncMuJqTbiKZurNlKwxs0LI/phIetAa0LAjg5tHdxBxsifg3kix/5/h T6kEXVNgLN4Z+kiCujbKa/GAVC6J9NwljLhmDxOE1PBO4hb5pR1MWpORrabbXAkynw 13HPJrIPx/ClwwP934WKnUJVfDEhSUXoZYciqe2I= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] elf: Add -z lazy to some more tests X-Act-Checkin: glibc X-Git-Author: =?utf-8?q?Arsen_Arsenovi=C4=87?= X-Git-Refname: refs/heads/master X-Git-Oldrev: 10f980d31e3d65c4c5bfafd176e7e1db92e2babe X-Git-Newrev: 6c7388d0b95ef9ae39fbe6f733e2c5049769c4f9 Message-Id: <20230310165358.146223858D32@sourceware.org> Date: Fri, 10 Mar 2023 16:53:58 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6c7388d0b95ef9ae39fbe6f733e2c5049769c4f9 commit 6c7388d0b95ef9ae39fbe6f733e2c5049769c4f9 Author: Arsen Arsenović Date: Tue Mar 7 11:29:34 2023 +0100 elf: Add -z lazy to some more tests Some toolchains, such as that used on Gentoo Hardened, set -z now out of the box. This trips up a couple of tests. Reviewed-by: Florian Weimer Diff: --- elf/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/elf/Makefile b/elf/Makefile index 0d19964d42..e5df78fd04 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1190,6 +1190,11 @@ postclean-generated += $(objpfx)/dso-sort-tests-2.generated-makefile \ ifeq (yes,$(have-tunables)) $(eval $(call include_dsosort_tests,dso-sort-tests-1.def)) $(eval $(call include_dsosort_tests,dso-sort-tests-2.def)) + +# BZ15311 is intentionally underlinked. +LDFLAGS-tst-bz15311-b.so += -Wl,-z,lazy +LDFLAGS-tst-bz15311-c.so += -Wl,-z,lazy +LDFLAGS-tst-bz15311-d.so += -Wl,-z,lazy endif check-abi: $(objpfx)check-abi-ld.out \ @@ -1514,6 +1519,20 @@ LDFLAGS-tst-initorderb2.so = -Wl,--no-as-needed LDFLAGS-tst-tlsmod5.so = -nostdlib -Wl,--no-as-needed LDFLAGS-tst-tlsmod6.so = -nostdlib -Wl,--no-as-needed +# The following tests are underlinked, and rely on late loading. On toolchains +# that set -z now by default, this leads to failures to load or fix up the +# executables being tested. +LDFLAGS-circlemod2.so = -Wl,-z,lazy +LDFLAGS-tst-tls20mod-bad.so = -Wl,-z,lazy +LDFLAGS-reldep6mod1.so += -Wl,-z,lazy +LDFLAGS-constload2.so = -Wl,-z,lazy +LDFLAGS-constload3.so = -Wl,-z,lazy +LDFLAGS-dblloadmod3.so = -Wl,-z,lazy +LDFLAGS-ifuncmod6.so = -Wl,-z,lazy +LDFLAGS-ltglobmod2.so = -Wl,-z,lazy +LDFLAGS-testobj1.so = -Wl,-z,lazy +LDFLAGS-testobj6.so = -Wl,-z,lazy + testobj1.so-no-z-defs = yes testobj3.so-no-z-defs = yes testobj4.so-no-z-defs = yes