diff options
author | ngie <ngie@FreeBSD.org> | 2015-10-14 18:29:53 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-10-14 18:29:53 +0000 |
commit | 4640526e7e284cecc9856f90c9b4e1728a8a38e2 (patch) | |
tree | 771255a49f3318d219706fd5b1e2dc308193e41b /tests | |
parent | f516f6c2bc8b716d0307cfcee9fd9483d4bb5db3 (diff) | |
download | FreeBSD-src-4640526e7e284cecc9856f90c9b4e1728a8a38e2.zip FreeBSD-src-4640526e7e284cecc9856f90c9b4e1728a8a38e2.tar.gz |
Add Makefile missed in r289236
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sys/acl/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/sys/acl/Makefile b/tests/sys/acl/Makefile new file mode 100644 index 0000000..298b0a2 --- /dev/null +++ b/tests/sys/acl/Makefile @@ -0,0 +1,29 @@ +# $FreeBSD$ + +TESTSDIR= ${TESTSBASE}/sys/acl + +BINDIR= ${TESTSDIR} + +FILES+= tools-crossfs.test +FILES+= tools-nfs4.test +FILES+= tools-nfs4-psarc.test +FILES+= tools-nfs4-trivial.test +FILES+= tools-posix.test + +SCRIPTS+= run + +TAP_TESTS_SH+= 00 +TAP_TESTS_SH+= 01 +TAP_TESTS_SH+= 02 +TAP_TESTS_SH+= 03 +TAP_TESTS_SH+= 04 + +.for t in ${TAP_TESTS_SH} +TEST_METADATA.$t+= required_user="root" +.endfor + +.for t in 01 03 04 +TEST_METADATA.$t+= required_programs="/sbin/zpool" +.endfor + +.include <bsd.test.mk> |