aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/output.sh
diff options
context:
space:
mode:
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