mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
The in-tree ZFS test suite is somewhat outdated and I see a number of failures there. I tend to think that we want to integrate the OpenZFS test suite somehow, replacing the legacy one, though it's also possible to run that as a separate test suite. In any case, if one wants to run the OpenZFS test suite separately, it's useful to be able to disable installation of the legacy ZFS test suite, so let's provide a src.conf option to do that. Reviewed by: asomers MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D46476
11 lines
151 B
Makefile
11 lines
151 B
Makefile
.include <src.opts.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/cddl
|
|
|
|
TESTS_SUBDIRS+= ${_zfs}
|
|
|
|
.if ${MK_ZFS_TESTS} != "no"
|
|
_zfs= zfs
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|