aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2021-11-13 16:00:03 -0500
committerEryu Guan <guaneryu@gmail.com>2021-11-21 21:22:57 +0800
commit79d84cdcd4740243daa54bfb004514c292e81502 (patch)
treee9eaa922ca325ce6781096fe72b5a151722896fa
parent9f8f0e4d5ae00990bac05fbd69a882255bf7bf9f (diff)
downloadxfstests-dev-79d84cdcd4740243daa54bfb004514c292e81502.tar.gz
generic/544: fix inode number ordering code
The code that creates files and moves them to low/high inode number files writes different file contents before doing the move - leading to non-reproducible results. Fix this by writing the file contents after moving them to high/low inode number files. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
-rwxr-xr-xtests/generic/5448
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/generic/544 b/tests/generic/544
index 4a9f48526d..4dbaea4de0 100755
--- a/tests/generic/544
+++ b/tests/generic/544
@@ -44,8 +44,9 @@ inum() {
# Create two test files, make $low_file the file with the lower inode
# number, and make $high_file the file with the higher inode number.
create_files() {
- _pwrite_byte 0x60 0 $filesize $testdir/file1 >> $seqres.full
- _pwrite_byte 0x61 0 $filesize $testdir/file2 >> $seqres.full
+ touch $testdir/file1
+ touch $testdir/file2
+
if [ "$(inum $testdir/file1)" -lt "$(inum $testdir/file2)" ]; then
mv $testdir/file1 $low_file
mv $testdir/file2 $high_file
@@ -53,6 +54,9 @@ create_files() {
mv $testdir/file2 $low_file
mv $testdir/file1 $high_file
fi
+
+ _pwrite_byte 0x60 0 $filesize $low_file >> $seqres.full
+ _pwrite_byte 0x61 0 $filesize $high_file >> $seqres.full
}
# Check md5sum of both files, but keep results sorted by inode order