aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/output.sh
diff options
context:
space:
mode:
authorLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 20:21:21 +0000
committerLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 22:37:20 +0000
commit7a5c2b205e4f0c3700f41f2ccd2b104476b8f026 (patch)
tree1a4f33f8d68139a6bdac2657ed2e9860efc194d6 /test/environment/output.sh
parenttests: stop mixing tabs and spaces (diff)
downloadfirejail-7a5c2b205e4f0c3700f41f2ccd2b104476b8f026.tar.gz
firejail-7a5c2b205e4f0c3700f41f2ccd2b104476b8f026.tar.zst
firejail-7a5c2b205e4f0c3700f41f2ccd2b104476b8f026.zip
tests: use bash-style [[...]] instead of [...]
Diffstat (limited to 'test/environment/output.sh')
-rwxr-xr-xtest/environment/output.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/environment/output.sh b/test/environment/output.sh
index 0872dc276..ba06f9184 100755
--- a/test/environment/output.sh
+++ b/test/environment/output.sh
@@ -5,7 +5,7 @@
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))