xfstests: add _require_freeze and minor cleanups
[xfstests-dev.git] / 246
1 #! /bin/bash
2 # FS QA Test No. 246
3 #
4 # Check that truncation after failed writes does not zero too much data.
5 #
6 # Based on a bug report and testcase from
7 # Marius Tolzmann <tolzmann@molgen.mpg.de>
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2010 Christoph Hellwig.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #
25 #-----------------------------------------------------------------------
26 #
27 # creator
28 owner=hch@lst.de
29
30 seq=`basename $0`
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
40
41 # real QA test starts here
42 _supported_fs generic
43 _supported_os Linux
44
45 file=$TEST_DIR/mmap-writev
46
47 _cleanup()
48 {
49         rm -rf $file
50         rm -rf $file.NEW
51 }
52
53 trap "_cleanup ; exit \$status" 0 1 2 3 15
54
55 echo -n "cccccccccc" > $file
56 $here/src/t_mmap_writev $file $file.NEW
57 od -t x2 $file.NEW
58
59 status=0
60 exit $status