[PATCH 2/3 V2] xfstests 198, 240, common.rc: added check for aiodio-sparse2
Dave Chinner
david at fromorbit.com
Wed Apr 18 18:51:35 CDT 2012
On Tue, Apr 17, 2012 at 11:24:46AM +0200, Tom Marek wrote:
> Tests number 198 and 240 could fail when aiodio-sparse2 was not build.
> _require_aiodio helper was added to common.rc file to fix this.
>
> Cc: david at fromorbit.com
> Signed-off-by: Tom Marek <tmarek at redhat.com>
> Reviewed-by: Lukas Czerner <lczerner at redhat.com>
.....
> @@ -770,6 +770,14 @@ _require_scratch()
> fi
> }
>
> +# this test needs aio-dio-regress to be built
> +#
> +_require_aiodio()
> +{
> + [ -x $here/src/aio-dio-regress/aiodio_sparse2 ] || \
> + _notrun "This tests requires src/aio-dio-regress/ to be built"
> +}
This function already exists in common.rc, which is why I pointed it
out for use.
# this test requires that a (specified) aio-dio executable exists
# $1 - command (optional)
#
_require_aiodio()
{
if [ -z "$1" ]
then
AIO_TEST=src/aio-dio-regress/aiodio_sparse2
[ -x $AIO_TEST ] || _notrun "aio-dio utilities required"
else
AIO_TEST=src/aio-dio-regress/$1
[ -x $AIO_TEST ] || _notrun "$AIO_TEST not built"
fi
}
Cheers,
Dave.
--
Dave Chinner
david at fromorbit.com
More information about the xfs
mailing list