xfs/004: don't fail test due to realtime files
[xfstests-dev.git] / tests / xfs / 233
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. 233
6 #
7 # Tests xfs_growfs on a rmapbt filesystem
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 -f $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_scratch_rmapbt
31 _require_no_large_scratch_dev
32
33 echo "Format and mount"
34 _scratch_mkfs_sized $((2 * 4096 * 4096)) > $seqres.full 2>&1
35 _scratch_mount >> $seqres.full 2>&1
36
37 testdir=$SCRATCH_MNT/test-$seq
38 mkdir $testdir
39
40 echo "Create the original files"
41 blksz="$(_get_block_size $testdir)"
42 _pwrite_byte 0x61 0 $((blksz * 14 + 71)) $testdir/original >> $seqres.full
43 cp -p $testdir/original $testdir/copy1
44 cp -p $testdir/copy1 $testdir/copy2
45
46 echo "Grow fs"
47 $XFS_GROWFS_PROG $SCRATCH_MNT 2>&1 |  _filter_growfs >> $seqres.full
48 _scratch_cycle_mount
49
50 echo "Create more copies"
51 cp -p $testdir/original $testdir/copy3
52
53 $XFS_INFO_PROG $SCRATCH_MNT >> $seqres.full
54
55 # success, all done
56 status=0
57 exit