blob: cf3c401a361c82f1e5b9e4dc8c56ff525c4d72d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Import helper functions
. $(atf_get_srcdir)/helper_functions.shin
atf_test_case group_add_gid_too_large
group_add_gid_too_large_body() {
populate_etc_skel
atf_check -s exit:64 -e inline:"pw: Bad id '9999999999999': too large\n" \
${PW} groupadd -n test1 -g 9999999999999
}
atf_test_case group_add_already_exists
group_add_already_exists_body() {
populate_etc_skel
atf_check -s exit:0 ${PW} groupadd foo
atf_check -s exit:65 \
-e inline:"pw: group name \`foo' already exists\n" \
${PW} groupadd foo
}
atf_init_test_cases() {
atf_add_test_case group_add_gid_too_large
atf_add_test_case group_add_already_exists
}
|