Philippe Mathieu-Daudé | 11a82d1 | 2019-03-07 15:58:38 +0100 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 2 | # |
| 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 Hellwig | e8c212d | 2009-07-16 19:26:54 +0200 | [diff] [blame] | 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 19 | # |
| 20 | |
| 21 | # creator |
| 22 | owner=kwolf@redhat.com |
| 23 | |
| 24 | seq=`basename $0` |
| 25 | echo "QA output created by $seq" |
| 26 | |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 27 | status=1 # failure is the default! |
| 28 | |
| 29 | _cleanup() |
| 30 | { |
| 31 | _cleanup_test_img |
| 32 | } |
| 33 | trap "_cleanup; exit \$status" 0 1 2 3 15 |
| 34 | |
| 35 | # get standard environment, filters and checks |
| 36 | . ./common.rc |
| 37 | . ./common.filter |
| 38 | |
Christoph Hellwig | e76a8e8 | 2009-07-09 15:26:11 +0200 | [diff] [blame] | 39 | _supported_fmt generic |
MORITA Kazutaka | 9cdfa1b | 2011-01-18 02:01:17 +0900 | [diff] [blame] | 40 | _supported_proto generic |
Max Reitz | 325dd91 | 2019-08-15 17:36:36 +0200 | [diff] [blame] | 41 | _unsupported_imgopts "subformat=streamOptimized" |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 42 | |
| 43 | |
| 44 | size=6G |
| 45 | |
| 46 | echo |
| 47 | echo "creating image" |
| 48 | _make_test_img $size |
| 49 | |
| 50 | |
| 51 | echo |
| 52 | echo "creating pattern" |
| 53 | $QEMU_IO \ |
Stefan Weil | 28d3d16 | 2012-03-14 19:57:24 +0100 | [diff] [blame] | 54 | -c "write -P 65 2048k 4k" \ |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 55 | -c "write 4k 4k" \ |
| 56 | -c "write 9M 4k" \ |
Stefan Weil | 28d3d16 | 2012-03-14 19:57:24 +0100 | [diff] [blame] | 57 | -c "read -P 65 -s 4k -l 4k 2044k 8k" \ |
Jeff Cody | fef9c19 | 2013-09-25 08:12:22 -0400 | [diff] [blame] | 58 | "$TEST_IMG" | _filter_qemu_io |
Christoph Hellwig | 6bf19c9 | 2009-06-22 18:29:05 +0200 | [diff] [blame] | 59 | |
| 60 | echo |
| 61 | echo "checking image for errors" |
| 62 | _check_test_img |
| 63 | |
| 64 | # success, all done |
| 65 | echo "*** done" |
| 66 | rm -f $seq.full |
| 67 | status=0 |