summaryrefslogtreecommitdiff
path: root/tests/chage/28_chage_interractive_date_EPOCH/run.exp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/chage/28_chage_interractive_date_EPOCH/run.exp')
-rwxr-xr-xtests/chage/28_chage_interractive_date_EPOCH/run.exp31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/chage/28_chage_interractive_date_EPOCH/run.exp b/tests/chage/28_chage_interractive_date_EPOCH/run.exp
deleted file mode 100755
index a93e8cc9..00000000
--- a/tests/chage/28_chage_interractive_date_EPOCH/run.exp
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/expect
-
-set timeout 5
-
-# I've not been able to put the opening bracket in the regular expressions
-# If anyone knows...
-
-spawn /usr/bin/chage myuser1
-expect -re "Minimum Password Age .0\]: "
-send "13\r"
-expect -re "Maximum Password Age .99999\]: "
-send "14\r"
-expect -re "Last Password Change \[(]YYYY-MM-DD\[)] .2005-07-27\]: "
-send "1970-01-01\r"
-expect -re "Password Expiration Warning .7\]: "
-send "9\r"
-expect -re "Password Inactive .-1\]: "
-send "35\r"
-expect -re "Account Expiration Date \[(]YYYY-MM-DD\[)] .-1\]: "
-send "1970-01-01\r"
-expect {
- eof {
- } default {
- puts "\nFAIL"
- exit 1
- }
-}
-
-puts "\nPASS"
-exit 0
-