generic: shutdown fs after log recovery
[xfstests-dev.git] / tests / generic / 376
1 #! /bin/bash
2 # FSQA Test No. 376
3 #
4 # Test that if we rename a file, without changing its parent directory, create
5 # a new file that has the old name of the file we renamed, doing an fsync
6 # against the file we renamed works correctly and after a power failure both
7 # files exists.
8 #
9 #-----------------------------------------------------------------------
10 #
11 # Copyright (C) 2016 SUSE Linux Products GmbH. All Rights Reserved.
12 # Author: Filipe Manana <fdmanana@suse.com>
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #-----------------------------------------------------------------------
27 #
28
29 seq=`basename $0`
30 seqres=$RESULT_DIR/$seq
31 echo "QA output created by $seq"
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38         _cleanup_flakey
39         cd /
40         rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . ./common/rc
45 . ./common/filter
46 . ./common/dmflakey
47
48 # real QA test starts here
49 _supported_fs generic
50 _supported_os Linux
51 _require_scratch
52 _require_dm_target flakey
53 _require_metadata_journaling $SCRATCH_DEV
54
55 rm -f $seqres.full
56
57 _scratch_mkfs >>$seqres.full 2>&1
58 _init_flakey
59 _mount_flakey
60
61 # Create our test directories and files.
62 mkdir $SCRATCH_MNT/dir
63 touch $SCRATCH_MNT/dir/foo
64 # Make sure everything is durably persisted.
65 sync
66 mv $SCRATCH_MNT/dir/foo $SCRATCH_MNT/dir/bar
67 touch $SCRATCH_MNT/dir/foo
68 $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/dir/bar
69
70 _flakey_drop_and_remount
71
72 echo "Filesystem contents after log replay:"
73 ls -R $SCRATCH_MNT/dir | _filter_scratch
74
75 _unmount_flakey
76 status=0
77 exit