Properly generate test programs by including common.sh. Otherwise, they

are all broken!
This commit is contained in:
jmmv 2009-01-20 10:29:59 +00:00
parent 238880933d
commit ca1ed55e40
1 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:06 jmmv Exp $
# $NetBSD: Makefile,v 1.2 2009/01/20 10:29:59 jmmv Exp $
.include <bsd.own.mk>
@ -10,14 +10,12 @@ SRCDIR= ${NETBSDSRCDIR}/external/bsd/atf/dist
CPPFLAGS+= -I${SRCDIR}/libs
TESTS_CXX= h_cpp
TESTS_SH= h_sh
TESTS_SH+= t_cleanup
TESTS_SH+= t_config
TESTS_SH+= t_env
TESTS_SH+= t_fork
TESTS_SH+= t_meta_data
TESTS_SH+= t_srcdir
TESTS_SH+= t_status
TESTS_SH+= t_workdir
.for t in t_cleanup t_config t_env t_fork t_meta_data t_srcdir \
t_status t_workdir
TESTS_SH+= ${t}
TESTS_SH_SRC_${t}= common.sh ${t}.sh
.endfor
.include <bsd.test.mk>