blob: 20bd87ee185d35127d6d23e7ec284e24d269637b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
#
# FS QA Test No. 510
#
# Test that if we move a file from a directory B to a directory A, replace
# directory B with directory A, fsync the file and then power fail, after
# mounting the filesystem the file has a single parent, named B and there
# is no longer any directory with the name A.
#
. ./common/preamble
_begin_fstest auto quick log
# Override the default cleanup function.
_cleanup()
{
_cleanup_flakey
cd /
rm -f $tmp.*
}
# Import common functions.
. ./common/filter
. ./common/dmflakey
# real QA test starts here
_supported_fs generic
_require_scratch
_require_dm_target flakey
_scratch_mkfs >>$seqres.full 2>&1
_require_metadata_journaling $SCRATCH_DEV
_init_flakey
_mount_flakey
# Create our test directories and file.
mkdir $SCRATCH_MNT/testdir
mkdir $SCRATCH_MNT/testdir/A
mkdir $SCRATCH_MNT/testdir/B
touch $SCRATCH_MNT/testdir/B/bar
# Make sure everything done so far is durably persisted.
sync
# Now move our file bar from directory B to directory A and then replace
# directory B with directory A, also renaming directory A to B. Finally
# fsync file bar.
mv $SCRATCH_MNT/testdir/B/bar $SCRATCH_MNT/testdir/A/bar
mv -T $SCRATCH_MNT/testdir/A $SCRATCH_MNT/testdir/B
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/B/bar
# Simulate a power failure and mount the filesystem. We expect file bar
# to exist and have a single parent directory, named B, and that no
# directory named A exists.
_flakey_drop_and_remount
echo "Filesystem content after power failure:"
ls -R $SCRATCH_MNT/testdir | _filter_scratch
_unmount_flakey
status=0
exit
|