Adjust build of ATF tests after import of atf-0.5.
This commit is contained in:
parent
01ab96ad80
commit
3c685893a8
@ -1,10 +1,10 @@
|
|||||||
# $NetBSD: Makefile,v 1.3 2008/02/04 20:30:15 jmmv Exp $
|
# $NetBSD: Makefile,v 1.4 2008/05/01 15:37:18 jmmv Exp $
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
TESTSDIR= ${TESTSBASE}/atf
|
TESTSDIR= ${TESTSBASE}/atf
|
||||||
|
|
||||||
SUBDIR= data formats sh_interface test_programs tools units
|
SUBDIR= atf-c atf-c++ atf-sh data formats test_programs tools
|
||||||
|
|
||||||
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
||||||
.PATH: ${SRCDIR}/tests/atf
|
.PATH: ${SRCDIR}/tests/atf
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
# $NetBSD: Makefile,v 1.3 2008/02/04 20:30:15 jmmv Exp $
|
# $NetBSD: Makefile,v 1.1 2008/05/01 15:37:18 jmmv Exp $
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
TESTSDIR= ${TESTSBASE}/atf/units
|
TESTSDIR= ${TESTSBASE}/atf/atf-c++
|
||||||
|
|
||||||
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
||||||
.PATH: ${SRCDIR}/tests/atf/units
|
.PATH: ${SRCDIR}/tests/atf/atf-c++
|
||||||
|
|
||||||
CPPFLAGS+= -DHAVE_CONFIG_H
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
||||||
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libatfprivate # for config.h
|
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libatf-c
|
||||||
CPPFLAGS+= -I${SRCDIR}/libs
|
|
||||||
|
|
||||||
TESTS_CXX= t_config
|
TESTS_CXX= t_config
|
||||||
TESTS_CXX+= t_env
|
TESTS_CXX+= t_env
|
||||||
TESTS_CXX+= t_expand
|
TESTS_CXX+= t_expand
|
||||||
TESTS_CXX+= t_fs
|
TESTS_CXX+= t_fs
|
||||||
TESTS_CXX+= t_io
|
TESTS_CXX+= t_io
|
||||||
|
TESTS_CXX+= t_macros
|
||||||
TESTS_CXX+= t_parser
|
TESTS_CXX+= t_parser
|
||||||
TESTS_CXX+= t_sanity
|
|
||||||
TESTS_CXX+= t_signals
|
TESTS_CXX+= t_signals
|
||||||
TESTS_CXX+= t_tests
|
TESTS_CXX+= t_tests
|
||||||
TESTS_CXX+= t_text
|
TESTS_CXX+= t_text
|
31
tests/atf/atf-c/Makefile
Normal file
31
tests/atf/atf-c/Makefile
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# $NetBSD: Makefile,v 1.1 2008/05/01 15:37:18 jmmv Exp $
|
||||||
|
|
||||||
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
|
TESTSDIR= ${TESTSBASE}/atf/atf-c
|
||||||
|
|
||||||
|
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
||||||
|
.PATH: ${SRCDIR}/tests/atf/atf-c
|
||||||
|
|
||||||
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
||||||
|
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libatf-c
|
||||||
|
|
||||||
|
TESTS_C= t_config
|
||||||
|
TESTS_C+= t_dynstr
|
||||||
|
TESTS_C+= t_env
|
||||||
|
TESTS_C+= t_error
|
||||||
|
TESTS_C+= t_expand
|
||||||
|
TESTS_C+= t_fs
|
||||||
|
TESTS_C+= t_io
|
||||||
|
TESTS_C+= t_list
|
||||||
|
TESTS_C+= t_macros
|
||||||
|
TESTS_C+= t_map
|
||||||
|
TESTS_C+= t_sanity
|
||||||
|
TESTS_C+= t_signals
|
||||||
|
TESTS_C+= t_tc
|
||||||
|
TESTS_C+= t_tcr
|
||||||
|
TESTS_C+= t_text
|
||||||
|
TESTS_C+= t_ui
|
||||||
|
TESTS_C+= t_user
|
||||||
|
|
||||||
|
.include <bsd.test.mk>
|
@ -1,11 +1,11 @@
|
|||||||
# $NetBSD: Makefile,v 1.2 2007/11/21 15:39:33 jmmv Exp $
|
# $NetBSD: Makefile,v 1.1 2008/05/01 15:37:18 jmmv Exp $
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
TESTSDIR= ${TESTSBASE}/atf/sh_interface
|
TESTSDIR= ${TESTSBASE}/atf/atf-sh
|
||||||
|
|
||||||
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
||||||
.PATH: ${SRCDIR}/tests/atf/sh_interface
|
.PATH: ${SRCDIR}/tests/atf/atf-sh
|
||||||
|
|
||||||
TESTS_SH= h_misc
|
TESTS_SH= h_misc
|
||||||
TESTS_SH+= t_atf_check
|
TESTS_SH+= t_atf_check
|
Loading…
Reference in New Issue
Block a user