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`
|
2013-03-15 12:28:02 +00:00
|
|
|
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
|
2014-08-13 11:08:41 +10:00
|
|
|
_require_test
|
2010-08-23 23:10:40 +10:00
|
|
|
|
2018-11-10 12:51:43 +01:00
|
|
|
_require_xfs_io_command "falloc"
|
2015-12-21 18:01:47 +11:00
|
|
|
_require_xfs_io_command "zero"
|
2010-08-23 23:10:40 +10:00
|
|
|
|
|
|
|
|
testfile=$TEST_DIR/242.$$
|
|
|
|
|
|
2011-04-15 15:19:59 -04:00
|
|
|
_test_generic_punch resvsp unresvsp zero 'bmap -p' _filter_bmap $testfile
|
2010-08-23 23:10:40 +10:00
|
|
|
|
|
|
|
|
status=0 ; exit
|