fstests: move test group info to test files
[xfstests-dev.git] / tests / generic / 526
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. 526
6 #
7 # Test that after a combination of file renames, linking and creating a new file
8 # with the old name of a renamed file, if we fsync the new file, after a power
9 # failure we are able to mount the filesystem and all file names correspond to
10 # the correct inodes.
11 #
12 . ./common/preamble
13 _begin_fstest auto quick log
14
15 # Override the default cleanup function.
16 _cleanup()
17 {
18         _cleanup_flakey
19         cd /
20         rm -f $tmp.*
21 }
22
23 # Import common functions.
24 . ./common/filter
25 . ./common/dmflakey
26
27 # real QA test starts here
28 _supported_fs generic
29 _require_scratch
30 _require_hardlinks
31 _require_dm_target flakey
32
33 _scratch_mkfs >>$seqres.full 2>&1
34 _require_metadata_journaling $SCRATCH_DEV
35 _init_flakey
36 _mount_flakey
37
38 mkdir $SCRATCH_MNT/testdir
39 echo -n "foo" > $SCRATCH_MNT/testdir/fname1
40 echo -n "hello" > $SCRATCH_MNT/testdir/fname2
41
42 # Make sure everything done so far is durably persisted.
43 sync
44
45 # Rename and link files such that one new name corresponds to the name of
46 # another renamed file and one new file has the old name of one of the renamed
47 # files. Then fsync only the new file.
48 mv $SCRATCH_MNT/testdir/fname1 $SCRATCH_MNT/testdir/fname3
49 mv $SCRATCH_MNT/testdir/fname2 $SCRATCH_MNT/testdir/fname4
50 ln $SCRATCH_MNT/testdir/fname3 $SCRATCH_MNT/testdir/fname2
51 echo -n "bar" > $SCRATCH_MNT/testdir/fname1
52 $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/fname1
53
54 # Simulate a power failure and mount the filesystem to check that all file names
55 # exist and correspond to the correct inodes.
56 _flakey_drop_and_remount
57
58 echo "File fname1 data after power failure: $(cat $SCRATCH_MNT/testdir/fname1)"
59 echo "File fname2 data after power failure: $(cat $SCRATCH_MNT/testdir/fname2)"
60 echo "File fname3 data after power failure: $(cat $SCRATCH_MNT/testdir/fname3)"
61 echo "File fname4 data after power failure: $(cat $SCRATCH_MNT/testdir/fname4)"
62
63 _unmount_flakey
64
65 status=0
66 exit