xref: /freebsd/tools/regression/tmpfs/Makefile (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1#	$NetBSD: Makefile,v 1.4 2006/11/09 15:25:37 jmmv Exp $
2
3tests=	t_mount
4tests+=	t_statvfs
5tests+=	t_mkdir
6tests+=	t_vnode_leak
7tests+=	t_setattr
8tests+=	t_rmdir
9tests+=	t_trail_slash
10tests+=	t_dots
11tests+=	t_create
12tests+=	t_remove
13tests+=	t_link
14tests+=	t_rename
15tests+=	t_read_write
16tests+=	t_exec
17tests+=	t_truncate
18tests+=	t_sizes
19tests+=	t_times
20tests+=	t_symlink
21tests+=	t_pipes
22tests+=	t_sockets
23tests+=	t_readdir
24tests+=	t_vnd
25
26regress: ${tests}
27.for t in ${tests}
28	@SUBRDIR=${.CURDIR} /bin/sh ${.CURDIR}/${t} ${TEST_ARGS}
29.endfor
30
31PROG=	h_tools
32MAN=
33WARNS?=	4
34
35t_sizes t_sockets t_statvfs: h_tools
36
37.include <bsd.prog.mk>
38