f78f701a2d
First they are redundant with the tests we currently have on pw(8) Second they to modify the host database instead of being self contained withing the test directory
25 lines
419 B
Makefile
25 lines
419 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/usr.sbin/pw
|
|
|
|
ATF_TESTS_SH= pw_etcdir \
|
|
pw_lock \
|
|
pw_config \
|
|
pw_groupadd \
|
|
pw_groupdel \
|
|
pw_groupmod \
|
|
pw_useradd \
|
|
pw_userdel \
|
|
pw_usermod \
|
|
pw_usernext
|
|
|
|
.for tp in ${ATF_TESTS_SH}
|
|
TEST_METADATA.${tp}+= required_user="root"
|
|
.endfor
|
|
|
|
FILES= group helper_functions.shin master.passwd pw.conf \
|
|
pw-modified.conf
|
|
FILESDIR= ${TESTSDIR}
|
|
|
|
.include <bsd.test.mk>
|