48415c8b1b
ATF tests have a default WARNS of 0, unlike other usermode programs. Reviewed by: ngie, julian MFC after: 3 weeks Sponsored by: Spectra Logic Corporation Differential Revision: https://reviews.freebsd.org/D9933
17 lines
304 B
Makefile
17 lines
304 B
Makefile
# $FreeBSD$
|
|
|
|
ATF_TESTS_C+= proc_test
|
|
|
|
PROGS= target_prog
|
|
SRCS_target_prog= target_prog.c
|
|
BINDIR_target_prog= ${TESTSDIR}
|
|
|
|
WARNS?= 6
|
|
LIBADD= elf proc rtld_db util
|
|
|
|
# Ensure that symbols aren't stripped from the test program, as they're needed
|
|
# for testing symbol lookup.
|
|
STRIP=
|
|
|
|
.include <bsd.test.mk>
|