Files
apfstests/tests/xfs/378
T
Darrick J. Wong 7e98d41a6e fstests: move test group info to test files
Refactor every test in the entire test suite to use the new boilerplate
functions.  This also migrates all the test group information into the
test files.  This patch has been autogenerated via the command:

./tools/convert-group btrfs ceph cifs ext4 f2fs generic nfs ocfs2 overlay perf shared udf xfs

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
Reviewed-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
2021-06-27 22:50:02 +08:00

39 lines
880 B
Bash
Executable File

#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2017 Oracle, Inc. All Rights Reserved.
#
# FS QA Test No. 378
#
# Populate a XFS filesystem and fuzz every btree-format file inode field.
# Use xfs_repair to fix the corruption.
#
. ./common/preamble
_begin_fstest dangerous_fuzzers dangerous_scrub dangerous_repair
_register_cleanup "_cleanup" BUS
# Import common functions.
. ./common/filter
. ./common/populate
. ./common/fuzzy
# real QA test starts here
_supported_fs xfs
_require_scratch_xfs_fuzz_fields
echo "Format and populate"
_scratch_populate_cached nofill > $seqres.full 2>&1
echo "Find btree-format file inode"
_scratch_mount
inum=$(stat -c '%i' $SCRATCH_MNT/S_IFREG.FMT_BTREE)
_scratch_unmount
echo "Fuzz inode"
_scratch_xfs_fuzz_metadata '' 'offline' "inode ${inum}" >> $seqres.full
echo "Done fuzzing inode"
# success, all done
status=0
exit