opnsense-src/libexec/rtld-elf/tests/rtld_deepbind/Makefile
Kyle Evans d9c543b6b0 rtld: add a test for RTLD_DEEPBIND
This tests that with RTLD_DEEPBIND, symbols are looked up in all of the
object's needed objects before the global object.

PR:		275393
Reviewed by:	kib
Sponsored by:	NetApp, Inc.
Sponsored by:	Klara, Inc.
Differential Revision:	https://reviews.freebsd.org/D42843
2023-11-30 19:26:09 -06:00

10 lines
227 B
Makefile

TESTSDIR?= ${TESTSBASE}/libexec/rtld-elf/rtld_deepbind
ATF_TESTS_C= rtld_deepbind
LIBVAL= ${.OBJDIR}/../libval
LDFLAGS.rtld_deepbind+= -L${LIBVAL} -Wl,-rpath,'$$ORIGIN'
DPADD+= -lval
LDADD+= -lval
.include <bsd.test.mk>