On 5/30/13 3:07 AM, alexander.tsvetkov@xxxxxxxxxx wrote:
> I think the following code of "check" script incorrectly builds this exclude
> list:
>
> "-X) xfile=$2; shift ;
> for d in $SRC_GROUPS $FSTYP; do
> [ -f $SRC_DIR/$d/$xfile ] || continue
> for f in `cat $SRC_DIR/$d/$xfile`; do
> echo $d/$f >> $tmp.xlist
Well, it is perhaps unexpected, but:
-X file exclude individual tests
I think it's designed to actually exclude tests contained in that file, not
test numbers. It's not very obvious. :(
But from the commit log:
commit 0b1e8abd4a6dbce54bcc5d0467e58966e41e7eb8
Author: Dave Chinner <dchinner@xxxxxxxxxx>
Date: Fri Mar 15 12:28:05 2013 +0000
xfstests: Reintroduce configurable test expunging.
It is definitely handy to be able to disabdle certain tests (e.g. tests
that are
known to hang or crash the test machine on certain kernels), so
re-introducing
the capability of avoiding certain tests just by placing them in a file is
useful.
Introduce a command line option to specify the expunged file name. The file
will
exist in each tests/* sub-directory so that only the testname is required,
and
can be managed independently. The use of a command line parameter allows
multiple expunge files to exist simultaneously in the one xfstests tree
which
simplifies management of a source repository used for multiple versions of a
distro.
Typical usage:
$ cat tests/generic/3.0-stable-avoid
280
$ sudo ./check -X 3.0-stable-avoid generic/280
FSTYP -- xfs (debug)
PLATFORM -- Linux/x86_64 test-1 3.0.39-dgc+
MKFS_OPTIONS -- -f -bsize=4096 /dev/vdb
MOUNT_OPTIONS -- /dev/vdb /mnt/scratch
generic/280 [expunged]
Passed all 0 tests
$
|