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