aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/rlimit-profile.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/environment/rlimit-profile.exp')
-rwxr-xr-xtest/environment/rlimit-profile.exp33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/environment/rlimit-profile.exp b/test/environment/rlimit-profile.exp
deleted file mode 100755
index a9e54a405..000000000
--- a/test/environment/rlimit-profile.exp
+++ /dev/null
@@ -1,33 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4#cd /home
5spawn $env(SHELL)
6match_max 100000
7
8send -- "firejail --profile=rlimit.profile\r"
9expect {
10 timeout {puts "TESTING ERROR 0\n";exit}
11 "Child process initialized"
12}
13sleep 1
14
15send -- "cat /proc/self/limits\r"
16expect {
17 timeout {puts "TESTING ERROR 1.1\n";exit}
18 "Max file size 1024 1024"
19}
20expect {
21 timeout {puts "TESTING ERROR 1.2\n";exit}
22 "Max processes 1000 1000"
23}
24expect {
25 timeout {puts "TESTING ERROR 1.3\n";exit}
26 "Max open files 500 500"
27}
28expect {
29 timeout {puts "TESTING ERROR 1.4\n";exit}
30 "Max pending signals 200 200"
31}
32after 100
33puts "\nall done\n"