blob: b0bc170938ebcac3e303102dd1589f74a0e7bc0e (
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
65
66
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
#
# FS QA Test No. 109
#
# Test rename for various sizes of directories. This is motivated by a bug
# in XFS where directory entry file type was not updated properly on rename.
#
. ./common/preamble
_begin_fstest auto metadata dir
# Import common functions.
# real QA test starts here
_supported_fs generic
_require_scratch
_require_symlinks
echo "Silence is golden"
filldir()
{
for (( i = 0; i < $1; i++ )); do
echo -n > "fname$i"
done
}
# Test renaming of file, symlink over file, symlink, non-existent
# name
renamedir()
{
touch fs1
touch fs2
touch fs3
touch fd1
touch fd2
ln -s foo ss1
ln -s foo ss2
ln -s foo ss3
ln -s foo sd1
ln -s foo sd2
mv -T fs1 fd1
mv -T fs2 sd1
mv -T fs3 ed1
mv -T ss1 fd2
mv -T ss2 sd2
mv -T ss3 ed2
}
_scratch_mkfs >> $seqres.full 2>&1
_scratch_mount >> $seqres.full 2>&1
# Test different directory sizes to test various directory formats
for f in 1 2 3 4 5 8 12 18 27 40 60 90 135 202 303 454 681 1020 1530 2295; do
mkdir $SCRATCH_MNT/dir$f
pushd $SCRATCH_MNT/dir$f >/dev/null
filldir $f
renamedir
popd >/dev/null
done
status=0
exit
|