[PATCH] xfstests: accept tests/ prefix for test name on commandline
David Sterba
dsterba at suse.cz
Thu Aug 29 06:09:01 CDT 2013
Just for convenience to let tab completion or shell globs work (files
that are not in the group file are ignored).
Signed-off-by: David Sterba <dsterba at suse.cz>
---
check | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/check b/check
index 4085eae..51b1d8e 100755
--- a/check
+++ b/check
@@ -235,12 +235,13 @@ if $have_test_arg; then
exit $status
;;
*) test_dir=`dirname $1`
+ test_dir=${test_dir#$SRC_DIR/*}
test_name=`basename $1`
group_file=$SRC_DIR/$test_dir/group
if egrep "^$test_name" $group_file >/dev/null ; then
# in group file ... OK
- echo $SRC_DIR/$1 >>$tmp.list
+ echo $SRC_DIR/$test_dir/$test_name >>$tmp.list
else
# oops
echo "$1 - unknown test, ignored"
--
1.8.3.1
More information about the xfs
mailing list