aboutsummaryrefslogtreecommitdiffstats
path: root/test/option_rlimit.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-08-08 19:12:30 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-08-08 19:12:30 -0400
commit1379851360349d6617ad32944a25ee5e2bb74fc2 (patch)
treef69b48e90708bfa3c2723d5a27ed3e024c827b43 /test/option_rlimit.exp
parentdelete files (diff)
downloadfirejail-1379851360349d6617ad32944a25ee5e2bb74fc2.tar.gz
firejail-1379851360349d6617ad32944a25ee5e2bb74fc2.tar.zst
firejail-1379851360349d6617ad32944a25ee5e2bb74fc2.zip
Baseline firejail 0.9.28
Diffstat (limited to 'test/option_rlimit.exp')
-rwxr-xr-xtest/option_rlimit.exp36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/option_rlimit.exp b/test/option_rlimit.exp
new file mode 100755
index 000000000..17d2bd9d1
--- /dev/null
+++ b/test/option_rlimit.exp
@@ -0,0 +1,36 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --rlimit-fsize=1024 --rlimit-nproc=1000 --rlimit-nofile=500 --rlimit-sigpending=200\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "Child process initialized"
11}
12sleep 1
13
14send -- "cat /proc/self/limits; pwd\r"
15expect {
16 timeout {puts "TESTING ERROR 1.1\n";exit}
17 "Max file size 1024 1024"
18}
19expect {
20 timeout {puts "TESTING ERROR 1.2\n";exit}
21 "Max processes 1000 1000"
22}
23expect {
24 timeout {puts "TESTING ERROR 1.3\n";exit}
25 "Max open files 500 500"
26}
27expect {
28 timeout {puts "TESTING ERROR 1.4\n";exit}
29 "Max pending signals 200 200"
30}
31expect {
32 timeout {puts "TESTING ERROR 1.5\n";exit}
33 "home"
34}
35sleep 1
36puts "\n"