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>
48 lines
1.0 KiB
Bash
Executable File
48 lines
1.0 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 084
|
|
#
|
|
# Exercises unwritten extent reads and writes, looking
|
|
# for data corruption (zeroes read) near the end of file.
|
|
#
|
|
. ./common/preamble
|
|
_begin_fstest ioctl rw auto
|
|
|
|
# Import common functions.
|
|
. ./common/filter
|
|
|
|
_filter_resv()
|
|
{
|
|
_filter_test_dir | sed -e 's/[0-9][0-9]* bytes/NUM bytes/g'
|
|
}
|
|
|
|
pgsize=`$here/src/feature -s`
|
|
|
|
# -i == number of iterations
|
|
# -l == bytes to leak on each iteration
|
|
# -b == read/write block size
|
|
# -s == preallocation size
|
|
|
|
# real QA test starts here
|
|
_supported_fs xfs
|
|
_require_xfs_io_command "falloc"
|
|
_require_test
|
|
|
|
echo
|
|
echo "*** First case - I/O blocksize same as pagesize"
|
|
$here/src/resvtest -i 20 -b $pgsize "$TEST_DIR/resv" | _filter_resv
|
|
[ $? -eq 0 ] && echo done
|
|
rm -f "$TEST_DIR/mumble"
|
|
|
|
echo
|
|
echo "*** Second case - 512 byte I/O blocksize"
|
|
$here/src/resvtest -i 40 -b 512 "$TEST_DIR/resv" | _filter_resv
|
|
[ $? -eq 0 ] && echo done
|
|
rm -f "$TEST_DIR/grumble"
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|