aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/output.sh
diff options
context:
space:
mode:
authorLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 19:59:01 +0000
committerLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 22:37:19 +0000
commitc47ad8b82a52a5648bdabfd8713ba0dda3df2c16 (patch)
treec2368dfba944b73e5fcfee8b9e45d3ad283e70ad /test/environment/output.sh
parenttests: use an array (diff)
downloadfirejail-c47ad8b82a52a5648bdabfd8713ba0dda3df2c16.tar.gz
firejail-c47ad8b82a52a5648bdabfd8713ba0dda3df2c16.tar.zst
firejail-c47ad8b82a52a5648bdabfd8713ba0dda3df2c16.zip
tests: fix underquoting
Diffstat (limited to 'test/environment/output.sh')
-rwxr-xr-xtest/environment/output.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/environment/output.sh b/test/environment/output.sh
index 329cb40c7..0872dc276 100755
--- a/test/environment/output.sh
+++ b/test/environment/output.sh
@@ -5,8 +5,8 @@
5 5
6i="0" 6i="0"
7 7
8while [ $i -lt 150000 ] 8while [ $i -lt 150000 ]
9do 9do
10 echo message number $i 10 echo "message number $i"
11 i=$[$i+1] 11 i=$((i+1))
12done 12done