Exclude tests that use rump

This commit is contained in:
christos 2012-08-08 13:57:05 +00:00
parent eda981fc36
commit cb461c6808
8 changed files with 53 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.37 2012/03/24 01:36:50 matt Exp $
# $NetBSD: Makefile,v 1.38 2012/08/08 13:57:05 christos Exp $
.include <bsd.own.mk>
@ -7,12 +7,16 @@
TESTSDIR= ${TESTSBASE}
ATFFILE= yes
SUBDIR= bin dev examples fs games include kernel lib libexec net
SUBDIR+= rump sbin sys usr.bin usr.sbin
SUBDIR= bin dev examples games include kernel lib libexec net
SUBDIR+= sbin sys usr.bin usr.sbin
. if (${MKRUMP} != "no")
SUBDIR+= fs rump
. if ${MKKMOD} != "no"
SUBDIR+= modules
. endif
. endif
. if ${MKCRYPTO} != "no"
SUBDIR+= crypto

View File

@ -1,10 +1,14 @@
# $NetBSD: Makefile,v 1.7 2010/12/15 20:40:17 pooka Exp $
# $NetBSD: Makefile,v 1.8 2012/08/08 13:57:05 christos Exp $
#
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/dev
TESTS_SUBDIRS+= audio cgd md raidframe scsipi sysmon
TESTS_SUBDIRS+= cgd raidframe
.if (${MKRUMP} != "no")
TESTS_SUBDIRS+= audio md scsipi sysmon
.endif
.include <bsd.test.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 2012/03/18 15:30:59 christos Exp $
# $NetBSD: Makefile,v 1.7 2012/08/08 13:57:06 christos Exp $
NOMAN= # defined
@ -6,10 +6,14 @@ NOMAN= # defined
TESTSDIR= ${TESTSBASE}/include/sys
TESTS_C= t_bitops t_bootblock t_cdefs t_socket t_tree t_types
TESTS_C= t_bitops t_bootblock t_cdefs t_tree t_types
LDADD.t_bitops+= -lm
.if (${MKRUMP} != "no")
TESTS_C+= t_socket
LDADD.t_socket+= -lrumpnet_local -lrumpnet_net -lrumpnet
LDADD.t_socket+= -lrumpvfs -lrump -lrumpuser -lpthread
.endif
.include <bsd.test.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.25 2012/03/17 17:23:34 jruoho Exp $
# $NetBSD: Makefile,v 1.26 2012/08/08 13:57:06 christos Exp $
NOMAN= # defined
@ -6,13 +6,9 @@ NOMAN= # defined
TESTSDIR= ${TESTSBASE}/kernel
TESTS_SUBDIRS= kqueue tty
TESTS_SUBDIRS= kqueue
TESTS_C= t_lock
TESTS_C+= t_pty
TESTS_C+= t_rnd
TESTS_C+= t_extattrctl
TESTS_C+= t_filedesc
TESTS_C+= t_subr_prf
TESTS_SH= t_umount
@ -22,9 +18,19 @@ BINDIR= ${TESTSDIR}
PROGS= h_ps_strings1
PROGS+= h_ps_strings2
LDADD.t_rnd+= -lrumpvfs -lrumpdev_rnd -lrumpdev -lrump -lrumpuser -lpthread
LDADD.t_filedesc+= ${LDADD.t_rnd}
.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

View File

@ -1,10 +1,14 @@
# $NetBSD: Makefile,v 1.19 2012/05/27 19:21:26 christos Exp $
# $NetBSD: Makefile,v 1.20 2012/08/08 13:57:06 christos Exp $
.include <bsd.own.mk>
TESTS_SUBDIRS= csu libbluetooth libc libcrypt libcurses libevent libexecinfo \
libm libobjc libposix libppath libprop libpthread \
librt librumpclient librumphijack libtre libutil semaphore
librt libtre libutil semaphore
.if (${MKRUMP} != "no")
TESTS_SUBDIRS+= librumpclient librumphijack
.endif
.if ${MKCRYPTO} != "no"
TESTS_SUBDIRS+= libdes

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.26 2012/06/22 18:45:23 christos Exp $
# $NetBSD: Makefile,v 1.27 2012/08/08 13:57:06 christos Exp $
MKMAN= no
@ -45,7 +45,6 @@ TESTS_C+= t_msync
TESTS_C+= t_nanosleep
TESTS_C+= t_pipe
TESTS_C+= t_pipe2
TESTS_C+= t_posix_fadvise
TESTS_C+= t_poll
TESTS_C+= t_recvmmsg
TESTS_C+= t_revoke
@ -66,7 +65,11 @@ TESTS_C+= t_write
SRCS.t_mprotect= t_mprotect.c ${SRCS_EXEC_PROT}
LDADD.t_getpid+= -lpthread
.if (${MKRUMP} != "no")
TESTS_C+= t_posix_fadvise
LDADD.t_posix_fadvise+= -lrumpvfs -lrump -lrumpuser -lpthread
.endif
WARNS= 4

View File

@ -1,7 +1,10 @@
# $NetBSD: Makefile,v 1.2 2010/07/13 21:13:27 jmmv Exp $
# $NetBSD: Makefile,v 1.3 2012/08/08 13:57:06 christos Exp $
#
.include <bsd.own.mk>
.if (${MKRUMP} != "no")
TESTS_SUBDIRS= pthread
.endif
TESTSDIR= ${TESTSBASE}/lib/semaphore

View File

@ -1,9 +1,12 @@
# $NetBSD: Makefile,v 1.9 2011/02/08 10:11:28 pooka Exp $
# $NetBSD: Makefile,v 1.10 2012/08/08 13:57:06 christos Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/net
TESTS_SUBDIRS= bpf carp icmp if if_loop net route sys
TESTS_SUBDIRS= route sys
.if (${MKRUMP} != "no")
TESTS_SUBDIRS+= bpf carp icmp if if_loop net
.endif
.include <bsd.test.mk>