aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mkfs_ext2_test.sh
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 19:18:58 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 19:20:45 +0200
commit08dfafc43757c42971b4bc3709ae7a5cda7c21fb (patch)
tree21d09e64ae9858c8285410ebd6aae6a17439efe1 /util-linux/mkfs_ext2_test.sh
parented2b9225371a36dd2694df65e395dc32fd94c5dd (diff)
downloadbusybox-08dfafc43757c42971b4bc3709ae7a5cda7c21fb.tar.gz
fix more instances of ": $((a++))" in shell scripts
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkfs_ext2_test.sh')
-rwxr-xr-xutil-linux/mkfs_ext2_test.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/util-linux/mkfs_ext2_test.sh b/util-linux/mkfs_ext2_test.sh
index f5347cc04..df22963f2 100755
--- a/util-linux/mkfs_ext2_test.sh
+++ b/util-linux/mkfs_ext2_test.sh
@@ -47,7 +47,7 @@ test_mke2fs() {
kilobytes=60
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = 200 && break
done
@@ -56,7 +56,7 @@ done
kilobytes=$((1 * 8*1024 - 50))
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = $((1 * 8*1024 + 300)) && break
done
@@ -65,7 +65,7 @@ done
kilobytes=$((2 * 8*1024 - 50))
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = $((2 * 8*1024 + 400)) && break
done
@@ -74,7 +74,7 @@ done
kilobytes=$((3 * 8*1024 - 50))
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = $((3 * 8*1024 + 500)) && break
done
@@ -83,7 +83,7 @@ done
kilobytes=$((4 * 8*1024 - 50))
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = $((4 * 8*1024 + 600)) && break
done
@@ -92,7 +92,7 @@ done
kilobytes=$((5 * 8*1024 - 50))
while true; do
test_mke2fs || exit 1
- : $((kilobytes++))
+ kilobytes=$((kilobytes+1))
test $kilobytes = $((5 * 8*1024 + 700)) && break
done
exit