xref: /freebsd/lib/libexecinfo/tests/Makefile (revision e0c4386e)
1
2PACKAGE=	tests
3
4TESTSRC=	${SRCTOP}/contrib/netbsd-tests/lib/libexecinfo
5
6.include <bsd.own.mk>
7
8# Perhaps not surprisingly, the backtrace symbol test needs symbols.  Leave
9# them in:
10STRIP=
11# It could probably be made to work without symbols by checking pointer values
12# instead, but part of the tested functionality is the symbol resolution logic,
13# so that doesn't seem useful.
14NETBSD_ATF_TESTS_C+=	backtrace_test
15
16ATF_TESTS_C+=		sigtramp_test
17
18LIBADD.backtrace_test+=	execinfo
19LIBADD.sigtramp_test+=	execinfo
20
21.include <netbsd-tests.test.mk>
22
23.include <bsd.test.mk>
24