aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-08-22 08:59:00 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-08-22 08:59:00 -0400
commit2b76cea1106462268b975ee68480796ba900d37f (patch)
tree6e5f058f8cff1eede40d5aac393475e04480e4c1 /test/environment
parentfixed whitelist description in man pages (diff)
downloadfirejail-2b76cea1106462268b975ee68480796ba900d37f.tar.gz
firejail-2b76cea1106462268b975ee68480796ba900d37f.tar.zst
firejail-2b76cea1106462268b975ee68480796ba900d37f.zip
--allow-debuggers
Diffstat (limited to 'test/environment')
-rwxr-xr-xtest/environment/allow-debuggers.exp32
-rwxr-xr-xtest/environment/environment.sh8
2 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..dde9c4cc1
--- /dev/null
+++ b/test/environment/allow-debuggers.exp
@@ -0,0 +1,32 @@
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 "exited with 0"
16}
17after 100
18
19send -- "firejail --allow-debuggers --profile=/etc/firejail/firefox.profile strace ls\r"
20expect {
21 timeout {puts "TESTING ERROR 2\n";exit}
22 "Child process initialized"
23}
24expect {
25 timeout {puts "TESTING ERROR 3\n";exit}
26 "exited with 0"
27}
28after 100
29
30
31puts "\nall done\n"
32
diff --git a/test/environment/environment.sh b/test/environment/environment.sh
index a6fe07a1c..785f57d3f 100755
--- a/test/environment/environment.sh
+++ b/test/environment/environment.sh
@@ -82,4 +82,12 @@ echo "TESTING: nice (test/environment/nice.exp)"
82echo "TESTING: quiet (test/environment/quiet.exp)" 82echo "TESTING: quiet (test/environment/quiet.exp)"
83./quiet.exp 83./quiet.exp
84 84
85which strace
86if [ "$?" -eq 0 ];
87then
88 echo "TESTING: --allow-debuggers (test/environment/allow-debuggers.exp)"
89 ./allow-debuggers.exp
90else
91 echo "TESTING SKIP: strace not found"
92fi
85 93