4 # Test qcow2 preallocation
6 # Copyright (C) 2019 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 owner
=kwolf@redhat.com
26 echo "QA output created by $seq"
28 status
=1 # failure is the default!
33 _rm_test_img
"$TEST_IMG.data"
35 trap "_cleanup; exit \$status" 0 1 2 3 15
37 # get standard environment, filters and checks
44 # External data files do not work with compat=0.10, and because there
45 # is an explicit case for external data files here, we cannot allow
46 # the user to specify whether to use one
47 _unsupported_imgopts
'compat=0.10' data_file
49 for mode
in off metadata falloc full
; do
52 echo "=== preallocation=$mode ==="
55 _make_test_img
-o "preallocation=$mode,extent_size_hint=0" 64M
58 du
-b $TEST_IMG | cut
-f1
60 # Can't use precise numbers here because they differ between filesystems
62 [ $
(du
-B1 $TEST_IMG | cut
-f1) -lt 1048576 ] && echo "low" ||
echo "high"
66 for mode
in off metadata falloc full
; do
69 echo "=== External data file: preallocation=$mode ==="
73 -o "data_file=$TEST_IMG.data,preallocation=$mode,extent_size_hint=0" 64M
75 echo -n "qcow2 file size: "
76 du
-b $TEST_IMG | cut
-f1
77 echo -n "data file size: "
78 du
-b $TEST_IMG.data | cut
-f1
80 # Can't use precise numbers here because they differ between filesystems
81 echo -n "qcow2 disk usage: "
82 [ $
(du
-B1 $TEST_IMG | cut
-f1) -lt 1048576 ] && echo "low" ||
echo "high"
83 echo -n "data disk usage: "
84 [ $
(du
-B1 $TEST_IMG.data | cut
-f1) -lt 2097152 ] && echo "low" ||
echo "high"