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>
34 lines
763 B
Bash
Executable File
34 lines
763 B
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2017 Oracle, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 362
|
|
#
|
|
# Populate a XFS filesystem and fuzz every cntbt 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 "Fuzz cntbt"
|
|
_scratch_xfs_fuzz_metadata '' 'offline' 'agf 0' 'addr cntroot' 'addr ptrs[1]' >> $seqres.full
|
|
echo "Done fuzzing cntbt"
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|