aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/deterministic-shutdown.exp
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 /test/environment/deterministic-shutdown.exp
parentbuild: Stop linking pthread (#4695) (diff)
downloadfirejail-c477e00dddb3f043b06f03357eeb2ed27343c677.tar.gz
firejail-c477e00dddb3f043b06f03357eeb2ed27343c677.tar.zst
firejail-c477e00dddb3f043b06f03357eeb2ed27343c677.zip
testing
Diffstat (limited to 'test/environment/deterministic-shutdown.exp')
-rwxr-xr-xtest/environment/deterministic-shutdown.exp16
1 files changed, 16 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"