mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
cf89aed924
Fully scripted conversion, see script in initial SPDX license commit message. Signed-off-by: Dave Chinner <dchinner@redhat.com>
51 lines
1.1 KiB
Bash
Executable File
51 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2015 Red Hat, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 114
|
|
#
|
|
# Test races while extending past EOF via sub-block AIO writes
|
|
#
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
|
|
here=`pwd`
|
|
tmp=/tmp/$$
|
|
status=1 # failure is the default!
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_cleanup()
|
|
{
|
|
cd /
|
|
rm -f $TEST_DIR/tst-aio-dio-eof-race
|
|
}
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
|
|
_supported_fs generic
|
|
_supported_os Linux
|
|
|
|
_require_test
|
|
_require_sparse_files
|
|
_require_aiodio aio-dio-eof-race
|
|
|
|
# Test does 512 byte DIO, so make sure that'll work
|
|
logical_block_size=`_min_dio_alignment $TEST_DEV`
|
|
|
|
if [ "$logical_block_size" -gt "512" ]; then
|
|
_notrun "device block size: $logical_block_size greater than 512"
|
|
fi
|
|
|
|
# We don't mind 512-byte fs blocks; the IOs won't be sub-block,
|
|
# but the test should still pass, even if it doesn't stress the code
|
|
# we're targeting.
|
|
|
|
# Note, this test does several extending loops internally
|
|
$AIO_TEST $TEST_DIR/tst-aio-dio-eof-race
|
|
|
|
status=$?
|
|
exit
|