aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2021-11-20 14:06:06 +0100
committerLibravatar smitsohu <smitsohu@gmail.com>2021-11-20 14:06:06 +0100
commitc477e00dddb3f043b06f03357eeb2ed27343c677 (patch)
tree14eee42a764571ff050c8a0be6451a00db977e1b
parentbuild: Stop linking pthread (#4695) (diff)
downloadfirejail-c477e00dddb3f043b06f03357eeb2ed27343c677.tar.gz
firejail-c477e00dddb3f043b06f03357eeb2ed27343c677.tar.zst
firejail-c477e00dddb3f043b06f03357eeb2ed27343c677.zip
testing
-rwxr-xr-xtest/environment/deterministic-shutdown.exp16
-rwxr-xr-xtest/environment/environment.sh3
2 files changed, 19 insertions, 0 deletions
diff --git a/test/environment/deterministic-shutdown.exp b/test/environment/deterministic-shutdown.exp
new file mode 100755
index 000000000..3931893be
--- /dev/null
+++ b/test/environment/deterministic-shutdown.exp
@@ -0,0 +1,16 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2021 Firejail Authors
4# License GPL v2
5
6set timeout 5
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail --deterministic-shutdown bash -c \"sleep 10 & exec sleep 1\"\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Parent is shutting down, bye..."
14}
15
16puts "\nall done\n"
diff --git a/test/environment/environment.sh b/test/environment/environment.sh
index 1e1dd549b..c35f69b0c 100755
--- a/test/environment/environment.sh
+++ b/test/environment/environment.sh
@@ -124,5 +124,8 @@ echo "TESTING: rlimit errors profile (test/environment/rlimit-bad-profile.exp)"
124echo "TESTING: deterministic exit code (test/environment/deterministic-exit-code.exp)" 124echo "TESTING: deterministic exit code (test/environment/deterministic-exit-code.exp)"
125./deterministic-exit-code.exp 125./deterministic-exit-code.exp
126 126
127echo "TESTING: deterministic shutdown (test/environment/deterministic-shutdown.exp)"
128./deterministic-shutdown.exp
129
127echo "TESTING: retain umask (test/environment/umask.exp)" 130echo "TESTING: retain umask (test/environment/umask.exp)"
128(umask 123 && ./umask.exp) 131(umask 123 && ./umask.exp)