NetBSD/tests/fs/vfs/Makefile
pooka b23eef386e Move basic unionfs test from fs/union to fs/vfs and make it test
all whiteout-supporting file systems with the file system in question
as the upper layer.  Also, add an unlink to the test to see if
whiteouts are really working.

ffslog_basic is the test case for PR kern/44377
2011-01-12 21:13:26 +00:00

41 lines
954 B
Makefile

# $NetBSD: Makefile,v 1.15 2011/01/12 21:13:27 pooka Exp $
#
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/fs/vfs
WARNS= 4
TESTS_C+= t_full
TESTS_C+= t_io
TESTS_C+= t_renamerace
TESTS_C+= t_ro
TESTS_C+= t_rmdirrace
TESTS_C+= t_union
TESTS_C+= t_unpriv
TESTS_C+= t_vfsops
TESTS_C+= t_vnops
LDADD+=-lrumpfs_ext2fs # ext2fs
LDADD+=-lrumpfs_ffs # ffs
LDADD+=-lrumpfs_lfs # lfs
LDADD+=-lrumpfs_msdos # msdos
LDADD+=-lrumpfs_syspuffs # puffs
LDADD+=-lrumpdev_putter -lrumpdev # \ putter
LDADD+=-lrumpfs_sysvbfs # sysvbfs
LDADD+=-lrumpfs_tmpfs # tmpfs
LDADD+=-lrumpfs_union # union
LDADD+=-lrumpdev_disk -lrumpdev # disk device
VFSTESTDIR != cd ${.CURDIR}/../common && ${PRINTOBJDIR}
LDADD+=-L${VFSTESTDIR} -lvfstest
LDADD+=-lrumpfs_nfs # NFS
LDADD+=-lrumpnet_shmif -lrumpnet_netinet -lrumpnet_net -lrumpnet
LDADD+=-lrumpvfs -lrump -lrumpuser -lpthread # base
LDADD+=-lutil
.include <bsd.test.mk>