1#!/usr/bin/env bash 2# 3# Test creating raw image preallocation mode 4# 5# Copyright (C) 2017 Nir Soffer <nirsof@gmail.com> 6# 7# This program is free software; you can redistribute it and/or modify 8# it under the terms of the GNU General Public License as published by 9# the Free Software Foundation; either version 2 of the License, or 10# (at your option) any later version. 11# 12# This program is distributed in the hope that it will be useful, 13# but WITHOUT ANY WARRANTY; without even the implied warranty of 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15# GNU General Public License for more details. 16# 17# You should have received a copy of the GNU General Public License 18# along with this program. If not, see <http://www.gnu.org/licenses/>. 19# 20 21# creator 22owner=nirsof@gmail.com 23 24seq=`basename $0` 25echo "QA output created by $seq" 26 27status=1 # failure is the default! 28 29_cleanup() 30{ 31 _cleanup_test_img 32 rm -f "$TEST_DIR/empty" 33} 34trap "_cleanup; exit \$status" 0 1 2 3 15 35 36# Some file systems sometimes allocate extra blocks independently of 37# the file size. This function hides the resulting difference in the 38# stat -c '%b' output. 39# Parameter 1: Number of blocks an empty file occupies 40# Parameter 2: Minimal number of blocks in an image 41# Parameter 3: Image size in bytes 42_filter_blocks() 43{ 44 extra_blocks=$1 45 min_blocks=$2 46 img_size=$3 47 48 sed -e "s/blocks=$min_blocks\\(\$\\|[^0-9]\\)/min allocation/" \ 49 -e "s/blocks=$((extra_blocks + img_size / 512))\\(\$\\|[^0-9]\\)/max allocation/" 50} 51 52# get standard environment, filters and checks 53. ./common.rc 54. ./common.filter 55 56_supported_fmt raw 57_supported_proto file 58_supported_os Linux 59 60size=$((1 * 1024 * 1024)) 61 62touch "$TEST_DIR/empty" 63extra_blocks=$(stat -c '%b' "$TEST_DIR/empty") 64 65# We always write the first byte; check how many blocks this filesystem 66# allocates to match empty image alloation. 67printf "\0" > "$TEST_DIR/empty" 68min_blocks=$(stat -c '%b' "$TEST_DIR/empty") 69 70echo 71echo "== creating image with default preallocation ==" 72_make_test_img $size | _filter_imgfmt 73stat -c "size=%s, blocks=%b" $TEST_IMG | _filter_blocks $extra_blocks $min_blocks $size 74 75for mode in off full falloc; do 76 echo 77 echo "== creating image with preallocation $mode ==" 78 IMGOPTS=preallocation=$mode _make_test_img $size | _filter_imgfmt 79 stat -c "size=%s, blocks=%b" $TEST_IMG | _filter_blocks $extra_blocks $min_blocks $size 80done 81 82# success, all done 83echo "*** done" 84rm -f $seq.full 85status=0 86