mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
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. (cherry picked from commit d9c543b6b0cabea6e6679d70b4e701018e7eab80)
18 lines
343 B
Makefile
18 lines
343 B
Makefile
|
|
SUBDIR+= libpythagoras libdeep libval libval2 target
|
|
TESTS_SUBDIRS+= rtld_deepbind
|
|
|
|
SUBDIR_DEPEND_libdeep= libval2
|
|
SUBDIR_DEPEND_rtld_deepbind= libval
|
|
SUBDIR_DEPEND_target= libpythagoras
|
|
|
|
ATF_TESTS_C= ld_library_pathfds
|
|
ATF_TESTS_C+= ld_preload_fds
|
|
|
|
.for t in ${ATF_TESTS_C}
|
|
SRCS.$t= $t.c common.c
|
|
.endfor
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.test.mk>
|