aboutsummaryrefslogtreecommitdiffstats
path: root/test/chroot/unchroot-as-root.exp
blob: 9f8a1d7844bec00140e01a7b49118cb021b691b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

send -- "firejail  --chroot=/tmp/chroot\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Error: --chroot option is not available on Grsecurity systems" {puts "\nall done\n"; exit}
	"Child process initialized" {puts "chroot available\n"};
}
sleep 1

send -- "cd /\r"
after 100


send -- "./unchroot\r"
expect {
	timeout {puts "TESTING ERROR 1\n";exit}
	"Bad system call"
}
after 100

puts "all done\n"