summaryrefslogtreecommitdiffstats
path: root/test/option_chroot_overlay.exp
blob: 08ffb1b43b1ec22ee3345d97a641516bcae99a10 (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"