f1809fcd66
Note: I'm not adding these to the build yet, since they depend on some other other cleanup I might get done only after the weekend. Even so, t_nullpts serves a simple example of how to repeat the crash described in PR kern/43456 (just remove "rump_sys_" from the calls and it should compile and you should get a host kernel panic instead of a coredump).
19 lines
375 B
Makefile
19 lines
375 B
Makefile
# $NetBSD: Makefile,v 1.1 2010/06/11 23:52:38 pooka Exp $
|
|
#
|
|
|
|
TESTSDIR= ${TESTSBASE}/fs/ptyfs
|
|
WARNS= 4
|
|
DBG=-g
|
|
NOGCCERROR=1
|
|
|
|
TESTS_C= t_ptyfs
|
|
TESTS_C+= t_nullpts
|
|
|
|
LDADD+= -lrumpfs_ptyfs # fs drivers
|
|
LDADD+= -lrumpkern_tty # tty support
|
|
LDADD+= -lrumpvfs -lrump -lrumpuser -lpthread # base
|
|
|
|
LDADD.t_nullpts+= -lrumpfs_null -lrumpvfs_layerfs
|
|
|
|
.include <bsd.test.mk>
|