Files
apfstests/tests/generic/207
T

52 lines
1.3 KiB
Bash
Raw Normal View History

#! /bin/bash
2009-06-03 15:07:02 -05:00
# FS QA Test No. 207
#
# Run aio-dio-extend-stat - test race in dio aio completion
#
#-----------------------------------------------------------------------
# Copyright (c) 2009 Eric Sandeen. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#-----------------------------------------------------------------------
#
seq=`basename $0`
seqres=$RESULT_DIR/$seq
2009-06-03 15:07:02 -05:00
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 $tmp.*
}
# get standard environment, filters and checks
2013-03-15 12:28:04 +00:00
. ./common/rc
. ./common/filter
2009-06-03 15:07:02 -05:00
# real QA test starts here
_supported_fs generic
_supported_os Linux
_require_test
2009-06-03 15:07:02 -05:00
2011-11-23 11:39:08 +09:00
_run_aiodio aio-dio-extend-stat
2009-06-03 15:07:02 -05:00
exit $status