summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-08-02 18:20:36 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-08-02 18:20:36 +0000
commitb1b00058669f8b922b52845bb7f0175de6df27c3 (patch)
treebccb2033e6ca01ab0881a39e53abbf1a4ea771e2
parent6bb6a54271ea20fd8467bd7913107446d05d5fd4 (diff)
downloadpw-darwin-b1b00058669f8b922b52845bb7f0175de6df27c3.tar.gz
pw-darwin-b1b00058669f8b922b52845bb7f0175de6df27c3.tar.zst
pw-darwin-b1b00058669f8b922b52845bb7f0175de6df27c3.zip
Convert the year used for regression test fro 2043 to 2037
This makes the regression tests pass on systems where time_t is 32bits
-rwxr-xr-xpw/tests/pw_useradd.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/pw/tests/pw_useradd.sh b/pw/tests/pw_useradd.sh
index f42980d..2ac31c9 100755
--- a/pw/tests/pw_useradd.sh
+++ b/pw/tests/pw_useradd.sh
@@ -181,29 +181,29 @@ user_add_expiration_body() {
populate_etc_skel
atf_check -s exit:0 \
- ${PW} useradd foo -e 20-03-2043
- atf_check -o inline:"foo:*:1001:1001::0:2310422400:User &:/home/foo:/bin/sh\n" \
+ ${PW} useradd foo -e 20-03-2037
+ atf_check -o inline:"foo:*:1001:1001::0:2121120000:User &:/home/foo:/bin/sh\n" \
-s exit:0 grep "^foo" ${HOME}/master.passwd
atf_check -s exit:0 ${PW} userdel foo
atf_check -s exit:0 \
- ${PW} useradd foo -e 20-03-43
- atf_check -o inline:"foo:*:1001:1001::0:2310422400:User &:/home/foo:/bin/sh\n" \
+ ${PW} useradd foo -e 20-03-37
+ atf_check -o inline:"foo:*:1001:1001::0:2121120000:User &:/home/foo:/bin/sh\n" \
-s exit:0 grep "^foo" ${HOME}/master.passwd
atf_check -s exit:0 ${PW} userdel foo
atf_check -s exit:0 \
- ${PW} useradd foo -e 20-Mar-2043
- atf_check -o inline:"foo:*:1001:1001::0:2310422400:User &:/home/foo:/bin/sh\n" \
+ ${PW} useradd foo -e 20-Mar-2037
+ atf_check -o inline:"foo:*:1001:1001::0:2121120000:User &:/home/foo:/bin/sh\n" \
-s exit:0 grep "^foo" ${HOME}/master.passwd
atf_check -s exit:0 ${PW} userdel foo
atf_check -e inline:"pw: Invalid date\n" -s exit:1 \
- ${PW} useradd foo -e 20-Foo-2043
+ ${PW} useradd foo -e 20-Foo-2037
atf_check -e inline:"pw: Invalid date\n" -s exit:1 \
- ${PW} useradd foo -e 20-13-2043
- atf_check -s exit:0 ${PW} useradd foo -e "12:00 20-03-2043"
+ ${PW} useradd foo -e 20-13-2037
+ atf_check -s exit:0 ${PW} useradd foo -e "12:00 20-03-2037"
atf_check -s exit:0 ${PW} userdel foo
atf_check -e inline:"pw: Invalid date\n" -s exit:1 \
- ${PW} useradd foo -e "12 20-03-2043"
- atf_check -s exit:0 ${PW} useradd foo -e "20-03-2043 12:00"
+ ${PW} useradd foo -e "12 20-03-2037"
+ atf_check -s exit:0 ${PW} useradd foo -e "20-03-2037 12:00"
atf_check -s exit:0 ${PW} userdel foo
}