diff options
| author | christos <christos@NetBSD.org> | 2012-08-08 13:57:05 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2012-08-08 13:57:05 +0000 |
| commit | 56f678e2e5074f861eb5cbb69e33cc7e454e6d9f (patch) | |
| tree | 267140dcd87e6f7d56e900fadabd42e5bee74cc2 /tests/kernel | |
| parent | 352341b4a089d4c2739eb89a5e3a5360626b655d (diff) | |
Exclude tests that use rump
Diffstat (limited to 'tests/kernel')
| -rw-r--r-- | tests/kernel/Makefile | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/tests/kernel/Makefile b/tests/kernel/Makefile index fe4956a971f..a189950faeb 100644 --- a/tests/kernel/Makefile +++ b/tests/kernel/Makefile @@ -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 |
