summaryrefslogtreecommitdiff
path: root/tests/login/02_login_user/login.exp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/login/02_login_user/login.exp')
-rwxr-xr-xtests/login/02_login_user/login.exp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/login/02_login_user/login.exp b/tests/login/02_login_user/login.exp
deleted file mode 100755
index c8b9b34d..00000000
--- a/tests/login/02_login_user/login.exp
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/expect
-
-set timeout 2
-expect_after default {puts "\nFAIL"; exit 1}
-
-spawn /bin/bash
-expect "# "
-
-send "login myuser\r"
-expect "Password: "
-send "myuserF00barbaz\r"
-expect "$ "
-
-send "id\r"
-expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
-expect "$ "
-send "exit\r"
-
-exit 0
-