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