misc: move exit status into trap handler
[xfstests-dev.git] / tests / xfs / 246
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 246
6 #
7 # Create an empty file and try to query the (nonexistant) CoW fork.
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20     cd /
21     rm -rf $tmp.*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29 _supported_fs xfs
30 _require_xfs_debug
31 _require_xfs_io_command "bmap" "-c"
32 _require_scratch
33
34 rm -f $seqres.full
35
36 echo "Format and mount"
37 _scratch_mkfs > $seqres.full 2>&1
38 _scratch_mount >> $seqres.full 2>&1
39
40 testdir=$SCRATCH_MNT/test-$seq
41 mkdir $testdir
42
43 echo "Create the original files"
44 touch $testdir/file1
45 sync
46
47 echo "Dump extents after sync"
48 echo "Hole CoW extents:"
49 $XFS_IO_PROG -c "bmap -clpv" $testdir/file1 | _filter_scratch
50
51 # success, all done
52 status=0
53 exit