reflink: remove unnecessary umounts from test code
[xfstests-dev.git] / tests / xfs / 139
1 #! /bin/bash
2 # FS QA Test No. 139
3 #
4 # Try to ENOSPC while expanding the refcntbt by CoWing every block
5 # of a file that eats the whole AG.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 seq=`basename "$0"`
25 seqres="$RESULT_DIR/$seq"
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -rf "$tmp".* "$testdir"
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42 . ./common/reflink
43
44 # real QA test starts here
45 _supported_os Linux
46 _require_scratch_reflink
47 _require_cp_reflink
48
49 rm -f "$seqres.full"
50
51 echo "Format and mount"
52 _scratch_mkfs -d agsize=$((32 * 1048576)) > "$seqres.full" 2>&1
53 _scratch_mount >> "$seqres.full" 2>&1
54
55 testdir="$SCRATCH_MNT/test-$seq"
56 rm -rf "$testdir"
57 mkdir "$testdir"
58 blksz="$(stat -f "$testdir" -c '%S')"
59
60 echo "Create the original files"
61 sz=$((48 * 1048576))
62 nr=$((sz / blksz))
63 _pwrite_byte 0x61 0 $sz "$testdir/file1" >> "$seqres.full"
64 _cp_reflink "$testdir/file1" "$testdir/file2" >> "$seqres.full"
65 _scratch_remount
66
67 echo "CoW every other block"
68 _pwrite_byte 0x62 0 $sz "$testdir/file1" >> "$seqres.full"
69 _scratch_remount
70
71 echo "Compare files"
72 md5sum "$testdir/file1" | _filter_scratch
73 md5sum "$testdir/file2" | _filter_scratch
74 #filefrag -v "$testdir/file1" "$testdir/file2"
75
76 # success, all done
77 status=0
78 exit