aboutsummaryrefslogtreecommitdiffstats
path: root/test/option_chroot_overlay.exp
blob: b39bc0c8eb16e31a5e719466cea58db699888b2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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"
}
sleep 1

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

puts "\n"