aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils/catchsignal.sh
diff options
context:
space:
mode:
authorLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 20:01:07 +0000
committerLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 22:37:20 +0000
commit270f0d95e3f27445057981b26a2aa6474769f3f2 (patch)
treea0dd67c7c9205d6987a706ffaa0141df91948ca7 /test/utils/catchsignal.sh
parenttests: add missing final newline (diff)
downloadfirejail-270f0d95e3f27445057981b26a2aa6474769f3f2.tar.gz
firejail-270f0d95e3f27445057981b26a2aa6474769f3f2.tar.zst
firejail-270f0d95e3f27445057981b26a2aa6474769f3f2.zip
tests: stop mixing tabs and spaces
Diffstat (limited to 'test/utils/catchsignal.sh')
-rwxr-xr-xtest/utils/catchsignal.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/utils/catchsignal.sh b/test/utils/catchsignal.sh
index 117179143..cef00b2a5 100755
--- a/test/utils/catchsignal.sh
+++ b/test/utils/catchsignal.sh
@@ -4,20 +4,20 @@
4# License GPL v2 4# License GPL v2
5 5
6_term() { 6_term() {
7 echo "Caught Signal" 7 echo "Caught Signal"
8 echo 1 8 echo 1
9 sleep 1 9 sleep 1
10 echo 2 10 echo 2
11 sleep 1 11 sleep 1
12 echo 3 12 echo 3
13 sleep 1 13 sleep 1
14 echo 4 14 echo 4
15 sleep 1 15 sleep 1
16 echo 5 16 echo 5
17 sleep 1 17 sleep 1
18 18
19 kill $pid 19 kill $pid
20 exit 20 exit
21} 21}
22 22
23trap _term SIGTERM 23trap _term SIGTERM