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