summaryrefslogtreecommitdiff
path: root/tests/chroot/login/01_login_sublogin/login.exp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/chroot/login/01_login_sublogin/login.exp')
-rwxr-xr-xtests/chroot/login/01_login_sublogin/login.exp25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/chroot/login/01_login_sublogin/login.exp b/tests/chroot/login/01_login_sublogin/login.exp
deleted file mode 100755
index 86253bcf..00000000
--- a/tests/chroot/login/01_login_sublogin/login.exp
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/expect
-
-set timeout 10
-expect_after default {puts "\nFAIL"; exit 1}
-
-spawn /bin/bash
-expect "# "
-
-send "strace -s 1000 -o /tmp/login.strace login\r"
-expect " login: "
-send "myuser\r"
-expect "Password: "
-send "myuserF00barbaz\r"
-expect "Password: "
-send "myuserF00barbaz\r"
-expect "$ "
-
-send "# expect uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
-expect "$ "
-send "id\r"
-expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
-expect "$ "
-send "exit\r"
-
-exit 0