11be35a165
To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.33 2013/04/16 22:05:44 mlelstv Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/kernel
|
|
|
|
TESTS_SUBDIRS= kqueue
|
|
TESTS_C= t_lock
|
|
TESTS_C+= t_lockf
|
|
TESTS_C+= t_pty
|
|
TESTS_C+= t_mqueue
|
|
TESTS_C+= t_sysv
|
|
TESTS_C+= t_subr_prf
|
|
TESTS_C+= t_kauth_pr_47598
|
|
|
|
TESTS_SH= t_umount
|
|
TESTS_SH+= t_umountstress
|
|
TESTS_SH+= t_ps_strings
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
PROGS= h_ps_strings1
|
|
PROGS+= h_ps_strings2
|
|
|
|
LDADD.t_mqueue+= -lrt
|
|
|
|
|
|
.if (${MKRUMP} != "no")
|
|
TESTS_SUBDIRS+= tty
|
|
|
|
TESTS_C+= t_extattrctl
|
|
TESTS_C+= t_filedesc
|
|
TESTS_C+= t_rnd
|
|
LDADD.t_extattrctl+= -lrumpvfs -lrump -lrumpuser -lpthread
|
|
LDADD.t_filedesc+= ${LDADD.t_rnd}
|
|
LDADD.t_rnd+= -lrumpvfs -lrumpdev_rnd -lrumpdev -lrump -lrumpuser -lpthread
|
|
|
|
.endif
|
|
|
|
|
|
.PATH: ${NETBSDSRCDIR}/sys/kern
|
|
TESTS_C+= t_extent
|
|
SRCS.t_extent= t_extent.c subr_extent.c
|
|
CPPFLAGS.t_extent.c= -D_EXTENT_TESTING -D__POOL_EXPOSE
|
|
CPPFLAGS.subr_extent.c= -D_EXTENT_TESTING -D__POOL_EXPOSE
|
|
|
|
t_subr_prf.c: gen_t_subr_prf ${NETBSDSRCDIR}/sys/kern/subr_prf.c
|
|
${HOST_SH} ${.ALLSRC} ${.TARGET}
|
|
|
|
CLEANFILES+= t_subr_prf.c
|
|
|
|
.include <bsd.test.mk>
|