mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
7e98d41a6e
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>
41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2018 Oracle, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 498
|
|
#
|
|
# Populate a XFS filesystem and fuzz every single-leafn-format dir block field.
|
|
# Do not fix the filesystem, to test metadata verifiers.
|
|
#
|
|
. ./common/preamble
|
|
_begin_fstest dangerous_fuzzers dangerous_norepair
|
|
|
|
_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 single-leafn-format dir block"
|
|
_scratch_mount
|
|
inum=$(stat -c '%i' $SCRATCH_MNT/S_IFDIR.FMT_LEAFN)
|
|
blk_sz=$(_get_block_size $SCRATCH_MNT)
|
|
_scratch_unmount
|
|
|
|
leaf_offset=$(( (2 ** 35) / blk_sz ))
|
|
echo "Fuzz single-leafn-format dir block"
|
|
_scratch_xfs_fuzz_metadata '' 'none' "inode ${inum}" "dblock ${leaf_offset}" >> $seqres.full
|
|
echo "Done fuzzing single-leafn-format dir block"
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|