aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/allow-debuggers.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/environment/allow-debuggers.exp')
-rwxr-xr-xtest/environment/allow-debuggers.exp40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/environment/allow-debuggers.exp b/test/environment/allow-debuggers.exp
new file mode 100755
index 000000000..8a404decb
--- /dev/null
+++ b/test/environment/allow-debuggers.exp
@@ -0,0 +1,40 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4cd /home
5spawn $env(SHELL)
6match_max 100000
7
8send -- "firejail --profile=/etc/firejail/firefox.profile --allow-debuggers strace ls\r"
9expect {
10 timeout {puts "TESTING ERROR 0\n";exit}
11 "Child process initialized"
12}
13expect {
14 timeout {puts "TESTING ERROR 1\n";exit}
15 "ioctl"
16}
17expect {
18 timeout {puts "TESTING ERROR 2\n";exit}
19 "exit_group"
20}
21after 100
22
23send -- "firejail --allow-debuggers --profile=/etc/firejail/firefox.profile strace ls\r"
24expect {
25 timeout {puts "TESTING ERROR 3\n";exit}
26 "Child process initialized"
27}
28expect {
29 timeout {puts "TESTING ERROR 4\n";exit}
30 "ioctl"
31}
32expect {
33 timeout {puts "TESTING ERROR 5\n";exit}
34 "exit_group"
35}
36after 100
37
38
39puts "\nall done\n"
40