blob: 4dc7d210f972188ebc9c54f680185ef1716127fb [file] [log] [blame]
Philippe Mathieu-Daudé11a82d12019-03-07 15:58:38 +01001#!/usr/bin/env bash
Christoph Hellwig6bf19c92009-06-22 18:29:05 +02002#
3# Nolan I qcow2 corruption - incorrectly reports free clusters
4#
5# Copyright (C) 2009 Red Hat, Inc.
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
Christoph Hellwige8c212d2009-07-16 19:26:54 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
Christoph Hellwig6bf19c92009-06-22 18:29:05 +020019#
20
21# creator
22owner=kwolf@redhat.com
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
Christoph Hellwig6bf19c92009-06-22 18:29:05 +020027status=1 # failure is the default!
28
29_cleanup()
30{
31 _cleanup_test_img
32}
33trap "_cleanup; exit \$status" 0 1 2 3 15
34
35# get standard environment, filters and checks
36. ./common.rc
37. ./common.filter
38
Christoph Hellwige76a8e82009-07-09 15:26:11 +020039_supported_fmt generic
MORITA Kazutaka9cdfa1b2011-01-18 02:01:17 +090040_supported_proto generic
Max Reitz325dd912019-08-15 17:36:36 +020041_unsupported_imgopts "subformat=streamOptimized"
Christoph Hellwig6bf19c92009-06-22 18:29:05 +020042
43
44size=6G
45
46echo
47echo "creating image"
48_make_test_img $size
49
50
51echo
52echo "creating pattern"
53$QEMU_IO \
Stefan Weil28d3d162012-03-14 19:57:24 +010054 -c "write -P 65 2048k 4k" \
Christoph Hellwig6bf19c92009-06-22 18:29:05 +020055 -c "write 4k 4k" \
56 -c "write 9M 4k" \
Stefan Weil28d3d162012-03-14 19:57:24 +010057 -c "read -P 65 -s 4k -l 4k 2044k 8k" \
Jeff Codyfef9c192013-09-25 08:12:22 -040058"$TEST_IMG" | _filter_qemu_io
Christoph Hellwig6bf19c92009-06-22 18:29:05 +020059
60echo
61echo "checking image for errors"
62_check_test_img
63
64# success, all done
65echo "*** done"
66rm -f $seq.full
67status=0