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

set timeout 10
spawn $env(SHELL)
match_max 100000

send --  "firejail --chroot=/tmp/chroot --overlay\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"mutually exclusive" {puts "normal system\n"}
	"Error: --chroot option is not available on GRSecurity systems" { puts "\nall done\n"; exit}
}
sleep 1

send --  "firejail --overlay --chroot=/tmp/chroot\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"mutually exclusive"
}
sleep 1

puts "\n"