aboutsummaryrefslogtreecommitdiffstats
path: root/test/option_man.exp
blob: d941a2432fbcb7951907a20f83d0300e8751840b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

send -- "man firejail\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Linux namespaces sandbox program"
}
after 100

send -- "q\r"
after 100
puts "\n"