1# $NetBSD: Makefile,v 1.26 2025/12/24 15:37:30 thorpej Exp $
2
3.include <bsd.own.mk>
4
5TESTSDIR=	${TESTSBASE}/fs
6
7SUBDIR+= 	common .WAIT
8
9TESTS_SUBDIRS+=	ffs fifofs psshfs puffs
10TESTS_SUBDIRS+=	vfs
11
12.if ${MKCD9660FS} != "no"
13TESTS_SUBDIRS+=	cd9660
14.endif
15
16.if ${MKHFS} != "no"
17TESTS_SUBDIRS+=	hfs
18.endif
19
20.if ${MKKERNFS} != "no"
21TESTS_SUBDIRS+=	kernfs
22.endif
23
24.if ${MKLFS} != "no"
25TESTS_SUBDIRS+=	lfs
26.endif
27
28.if ${MKMSDOSFS} != "no"
29TESTS_SUBDIRS+=	msdosfs
30.endif
31
32.if ${MKNFS} != "no"
33TESTS_SUBDIRS+=	nfs
34.endif
35
36.if ${MKNULLFS} != "no"
37TESTS_SUBDIRS+=	nullfs
38.endif
39
40.if ${MKPTYFS} != "no"
41TESTS_SUBDIRS+=	ptyfs
42.endif
43
44.if ${MKTMPFS} != "no"
45TESTS_SUBDIRS+=	tmpfs
46.endif
47
48.if ${MKUMAPFS} != "no"
49TESTS_SUBDIRS+=	umapfs
50.endif
51
52.if ${MKUNIONFS} != "no"
53TESTS_SUBDIRS+=	union
54.endif
55
56.if ${MKZFS} != "no"
57TESTS_SUBDIRS+=	zfs
58.endif
59
60FILES= h_funcs.subr
61FILESDIR= ${TESTSDIR}
62
63.include <bsd.test.mk>
64