opnsense-src/lib/libthr/tests/dlopen/Makefile
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

28 lines
570 B
Makefile

TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libpthread/dlopen
WARNS?= 2
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/lib/libthr/dlopen
CFLAGS+= -DTESTDIR=\"${TESTSDIR:Q}/\"
LDFLAGS+= -L${.OBJDIR}/dso -Wl,-rpath=${TESTDIR}
.if !defined(NO_PIC)
SUBDIR+= dso
NETBSD_ATF_TESTS_C= dlopen_test
NETBSD_ATF_TESTS_C+= main_pthread_create_test
# XXX: this blocks running the testcase
#NETBSD_ATF_TESTS_C+= dso_pthread_create_test
.for t in dlopen_test main_pthread_create_test
LIBADD.${t}+= pthread
.endfor
.endif
.include <netbsd-tests.test.mk>
.include <bsd.test.mk>