1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/usr/bin/expect -f
# This file is part of Firejail project
# Copyright (C) 2014-2026 Firejail Authors
# License GPL v2
set timeout 10
cd /home
spawn $env(SHELL)
match_max 100000
send -- "firejail --rlimit-as=1234567890 --rlimit-cpu=100 --rlimit-fsize=1024 --rlimit-nproc=1000 --rlimit-nofile=500 --rlimit-sigpending=200\r"
expect {
timeout {puts "TESTING ERROR 0\n";exit}
-re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
}
sleep 1
send -- "cat /proc/self/limits; pwd\r"
expect {
timeout {puts "TESTING ERROR 1.1\n";exit}
"Max cpu time 100 100"
}
expect {
timeout {puts "TESTING ERROR 1.2\n";exit}
"Max file size 1024 1024"
}
expect {
timeout {puts "TESTING ERROR 1.3\n";exit}
"Max processes 1000 1000"
}
expect {
timeout {puts "TESTING ERROR 1.4\n";exit}
"Max open files 500 500"
}
expect {
timeout {puts "TESTING ERROR 1.5\n";exit}
"Max address space 1234567890 1234567890"
}
expect {
timeout {puts "TESTING ERROR 1.6\n";exit}
"Max pending signals 200 200"
}
expect {
timeout {puts "TESTING ERROR 1.7\n";exit}
"home"
}
after 100
puts "\nall done\n"
|