fstests: move test group info to test files
[xfstests-dev.git] / tests / xfs / 334
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. 334
6 #
7 # Ensure that we can create a few realtime files on a rmapbt filesystem.
8 #
9 . ./common/preamble
10 _begin_fstest auto quick rmap realtime
11
12 # Import common functions.
13 . ./common/filter
14
15 # real QA test starts here
16 _supported_fs xfs
17 _require_realtime
18 _require_xfs_scratch_rmapbt
19
20 rm -f "$seqres.full"
21
22 echo "Format and mount"
23 _scratch_mkfs > "$seqres.full" 2>&1
24 _scratch_mount
25
26 echo "Create a few files"
27 $XFS_IO_PROG -f -R -c 'pwrite -S 0x67 0 50000' -c fsync $SCRATCH_MNT/f1 >> $seqres.full
28 $XFS_IO_PROG -f -R -c 'pwrite -S 0x67 0 50000' -c fsync $SCRATCH_MNT/f2 >> $seqres.full
29 _scratch_cycle_mount
30
31 echo "Grab contents"
32 md5sum $SCRATCH_MNT/f1 $SCRATCH_MNT/f2 | _filter_scratch
33
34 echo "Remove one file"
35 rm -rf $SCRATCH_MNT/f2
36
37 # success, all done
38 status=0
39 exit