mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
In some cases the test system might not have mount_cd9660(8). Don't implicitly rely on it while testing cd9660 support; explicitly rely on it MFC after: 1 week Reported by: mjohnston Sponsored by: EMC / Isilon Storage Division
17 lines
367 B
Makefile
17 lines
367 B
Makefile
# $FreeBSD$
|
|
|
|
ATF_TESTS_SH+= makefs_cd9660_tests
|
|
ATF_TESTS_SH+= makefs_ffs_tests
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
SCRIPTS+= makefs_tests_common.sh
|
|
SCRIPTSNAME_makefs_tests_common.sh= makefs_tests_common.sh
|
|
|
|
TEST_METADATA.makefs_cd9660_tests+= required_files="/sbin/mount_cd9660"
|
|
|
|
.for t in ${ATF_TESTS_SH}
|
|
TEST_METADATA.$t+= required_user="root"
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|