aboutsummaryrefslogtreecommitdiffstats
path: root/test/option_list.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
commit2905b9f9ab5c5ed6f9210d1d843a8bcf41451854 (patch)
treed3bb968dbcb9f22856de345d0df5ecf2a44d594f /test/option_list.exp
parentquiterss profile (diff)
downloadfirejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.gz
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.zst
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.zip
make test-utils
Diffstat (limited to 'test/option_list.exp')
-rwxr-xr-xtest/option_list.exp48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/option_list.exp b/test/option_list.exp
deleted file mode 100755
index b9c73e52b..000000000
--- a/test/option_list.exp
+++ /dev/null
@@ -1,48 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "Child process initialized"
11}
12after 100
13
14spawn $env(SHELL)
15send -- "firejail\r"
16expect {
17 timeout {puts "TESTING ERROR 1\n";exit}
18 "Child process initialized"
19}
20after 100
21
22spawn $env(SHELL)
23send -- "firejail\r"
24expect {
25 timeout {puts "TESTING ERROR 2\n";exit}
26 "Child process initialized"
27}
28sleep 1
29
30spawn $env(SHELL)
31send -- "firejail --list\r"
32expect {
33 timeout {puts "TESTING ERROR 3\n";exit}
34 ":firejail"
35}
36expect {
37 timeout {puts "TESTING ERROR 4\n";exit}
38 ":firejail"
39}
40expect {
41 timeout {puts "TESTING ERROR 5\n";exit}
42 ":firejail"
43}
44after 100
45
46
47puts "\n"
48