aboutsummaryrefslogtreecommitdiffstats
path: root/test/option_chroot_overlay.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/option_chroot_overlay.exp')
-rwxr-xr-xtest/option_chroot_overlay.exp22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/option_chroot_overlay.exp b/test/option_chroot_overlay.exp
deleted file mode 100755
index 08ffb1b43..000000000
--- a/test/option_chroot_overlay.exp
+++ /dev/null
@@ -1,22 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --chroot=/tmp/chroot --overlay\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "mutually exclusive" {puts "normal system\n"}
11 "Error: --chroot option is not available on Grsecurity systems" { puts "\nall done\n"; exit}
12}
13sleep 1
14
15send -- "firejail --overlay --chroot=/tmp/chroot\r"
16expect {
17 timeout {puts "TESTING ERROR 0\n";exit}
18 "mutually exclusive"
19}
20sleep 1
21
22puts "\n"