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

set timeout 10
spawn $env(SHELL)
match_max 100000

send -- "firejail --version\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"firejail version "
}
after 100

puts "\n"