opnsense-src/lib/libexecinfo/tests/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

22 lines
569 B
Makefile

PACKAGE= tests
TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libexecinfo
.include <bsd.own.mk>
# Perhaps not surprisingly, the backtrace symbol test needs symbols. Leave
# them in:
STRIP=
# It could probably be made to work without symbols by checking pointer values
# instead, but part of the tested functionality is the symbol resolution logic,
# so that doesn't seem useful.
NETBSD_ATF_TESTS_C+= backtrace_test
ATF_TESTS_C+= sigtramp_test
LIBADD.backtrace_test+= execinfo
LIBADD.sigtramp_test+= execinfo
.include <netbsd-tests.test.mk>
.include <bsd.test.mk>