Files
apfstests/tests/xfs/242
T

42 lines
725 B
Bash
Raw Normal View History

2010-08-23 23:10:40 +10:00
#! /bin/bash
2018-06-09 11:35:45 +10:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2010 Red Hat. All Rights Reserved.
#
2010-08-23 23:10:40 +10:00
# FS QA Test No. 242
#
# Test XFS_IOC_ZERO_RANGE
#
seq=`basename $0`
seqres=$RESULT_DIR/$seq
2010-08-23 23:10:40 +10:00
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
status=1 # failure is the default!
_cleanup()
{
rm -f $tmp.*
}
trap "_cleanup ; exit \$status" 0 1 2 3 15
# get standard environment, filters and checks
2013-03-15 12:28:04 +00:00
. ./common/rc
. ./common/filter
. ./common/punch
2010-08-23 23:10:40 +10:00
# real QA test starts here
_supported_fs xfs
_supported_os Linux
_require_test
2010-08-23 23:10:40 +10:00
_require_xfs_io_command "falloc"
_require_xfs_io_command "zero"
2010-08-23 23:10:40 +10:00
testfile=$TEST_DIR/242.$$
_test_generic_punch resvsp unresvsp zero 'bmap -p' _filter_bmap $testfile
2010-08-23 23:10:40 +10:00
status=0 ; exit