From d30ae468d925199359aa7c6d4cdec7e9e15587dd Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sat, 19 Nov 2016 09:49:09 -0500 Subject: testing --- test/environment/rlimit-profile.exp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 test/environment/rlimit-profile.exp (limited to 'test/environment/rlimit-profile.exp') diff --git a/test/environment/rlimit-profile.exp b/test/environment/rlimit-profile.exp new file mode 100755 index 000000000..a9e54a405 --- /dev/null +++ b/test/environment/rlimit-profile.exp @@ -0,0 +1,33 @@ +#!/usr/bin/expect -f + +set timeout 10 +#cd /home +spawn $env(SHELL) +match_max 100000 + +send -- "firejail --profile=rlimit.profile\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "Child process initialized" +} +sleep 1 + +send -- "cat /proc/self/limits\r" +expect { + timeout {puts "TESTING ERROR 1.1\n";exit} + "Max file size 1024 1024" +} +expect { + timeout {puts "TESTING ERROR 1.2\n";exit} + "Max processes 1000 1000" +} +expect { + timeout {puts "TESTING ERROR 1.3\n";exit} + "Max open files 500 500" +} +expect { + timeout {puts "TESTING ERROR 1.4\n";exit} + "Max pending signals 200 200" +} +after 100 +puts "\nall done\n" -- cgit v1.2.3-54-g00ecf