misc: move exit status into trap handler
[xfstests-dev.git] / tests / generic / 155
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 155
6 #
7 # Ensure that CoW on all copies of a file reflinked N times increases block count
8 #   - Record fs block usage (0)
9 #   - Create a file and some reflink copies
10 #   - Record fs block usage (1)
11 #   - CoW some blocks of the copies
12 #   - Record fs block usage (2)
13 #   - CoW all the rest of the blocks of the copies
14 #   - Compare fs block usage to (2), (1), and (0)
15 #
16 # The main difference from 834 is that we use zero range, directio, and
17 # mmap to mix things up a bit.
18 #
19 seq=`basename $0`
20 seqres=$RESULT_DIR/$seq
21 echo "QA output created by $seq"
22
23 here=`pwd`
24 tmp=/tmp/$$
25 status=1    # failure is the default!
26 trap "_cleanup; exit \$status" 0 1 2 3 15
27
28 _cleanup()
29 {
30     cd /
31     rm -rf $tmp.* $testdir
32 }
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37 . ./common/reflink
38
39 # real QA test starts here
40 _require_test_reflink
41 _require_cp_reflink
42 _require_xfs_io_command "fzero"
43 _require_odirect
44
45 rm -f $seqres.full
46
47 testdir=$TEST_DIR/test-$seq
48 rm -rf $testdir
49 mkdir $testdir
50
51 echo "Create the original file blocks"
52 blksz="$(_get_block_size $testdir)"
53 blks=2000
54 margin='15%'
55 sz=$((blksz * blks))
56 free_blocks0=$(stat -f $testdir -c '%f')
57 nr=4
58 filesize=$((blksz * nr))
59 _pwrite_byte 0x61 0 $sz $testdir/file1 >> $seqres.full
60 _test_cycle_mount
61
62 echo "Create the reflink copies"
63 for i in `seq 2 $nr`; do
64         _cp_reflink $testdir/file1 $testdir/file$i
65 done
66 _test_cycle_mount
67 free_blocks1=$(stat -f $testdir -c '%f')
68
69 echo "Rewrite some of the blocks"
70 $XFS_IO_PROG -f -c "fzero 0 $sz" $testdir/file2 >> $seqres.full
71 _pwrite_byte 0x63 0 $((sz / 2)) $testdir/file3 -d >> $seqres.full
72 _mwrite_byte 0x64 $((sz / 2)) $((sz / 2)) $sz $testdir/file4 >> $seqres.full
73 _test_cycle_mount
74 free_blocks2=$(stat -f $testdir -c '%f')
75
76 echo "Rewrite all the files"
77 _pwrite_byte 0x62 0 $sz $testdir/file2 -d >> $seqres.full
78 _mwrite_byte 0x63 0 $sz $sz $testdir/file3 >> $seqres.full
79 $XFS_IO_PROG -f -c "fzero 0 $sz" $testdir/file4 >> $seqres.full
80 _test_cycle_mount
81 free_blocks3=$(stat -f $testdir -c '%f')
82
83 echo "Rewrite the original file"
84 _pwrite_byte 0x65 0 $sz $testdir/file1 >> $seqres.full
85 _test_cycle_mount
86 free_blocks4=$(stat -f $testdir -c '%f')
87 #echo $free_blocks0 $free_blocks1 $free_blocks2 $free_blocks3 $free_blocks4
88
89 _within_tolerance "free blocks after reflinking" $free_blocks1 $((free_blocks0 - blks)) $margin -v
90
91 _within_tolerance "free blocks after partially CoWing some copies" $free_blocks2 $((free_blocks1 - (2 * blks))) $margin -v
92
93 _within_tolerance "free blocks after CoWing all copies" $free_blocks3 $((free_blocks2 - blks)) $margin -v
94
95 _within_tolerance "free blocks after overwriting original" $free_blocks4 $free_blocks3 $margin -v
96
97 _within_tolerance "free blocks after all tests" $free_blocks4 $((free_blocks0 - (4 * blks))) $margin -v
98
99 # success, all done
100 status=0
101 exit