btrfs-progs: tests: add shell quotes to mkfs test scripts
[platform/upstream/btrfs-progs.git] / tests / mkfs-tests / 004-rootdir-keeps-size / test.sh
index 4a84e6d..635a513 100755 (executable)
@@ -13,12 +13,12 @@ test_mkfs_with_size() {
        local tmp
 
        size="$1"
-       run_check truncate -s$size $TEST_DEV
-       imgsize=$(run_check_stdout stat --format=%s $TEST_DEV)
-       run_check $SUDO_HELPER $TOP/mkfs.btrfs -f \
-               --rootdir $INTERNAL_BIN/Documentation \
-               $TEST_DEV
-       tmp=$(run_check_stdout stat --format=%s $TEST_DEV)
+       run_check truncate -s"$size" "$TEST_DEV"
+       imgsize=$(run_check_stdout stat --format=%s "$TEST_DEV")
+       run_check $SUDO_HELPER "$TOP/mkfs.btrfs" -f \
+               --rootdir "$INTERNAL_BIN/Documentation" \
+               "$TEST_DEV"
+       tmp=$(run_check_stdout stat --format=%s "$TEST_DEV")
        if ! [ "$imgsize" = "$tmp" ]; then
                _fail "image size changed from $imgsize to $tmp"
        fi