Add regression tests for a bug reported in stable/10

While pw(8) on head is not affected it is worth adding more regression tests
ensuring this bug will not happen unnoticed in the futur
This commit is contained in:
Baptiste Daroussin 2015-08-05 21:11:32 +00:00
parent d94b89b915
commit f5a15df7d8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286341

View File

@ -195,6 +195,14 @@ user_mod_renamehome_body() {
test -d ${HOME}/home/bar || atf_fail "Directory not created"
}
atf_test_case user_mod_uid
user_mod_uid_body() {
populate_etc_skel
atf_check -s exit:0 ${PW} useradd foo
atf_check -s exit:0 ${PW} usermod foo -u 5000
}
atf_init_test_cases() {
atf_add_test_case user_mod
atf_add_test_case user_mod_noupdate
@ -210,4 +218,5 @@ atf_init_test_cases() {
atf_add_test_case user_mod_h
atf_add_test_case user_mod_H
atf_add_test_case user_mod_renamehome
atf_add_test_case user_mod_uid
}