xfstests: fix typo in check

There is no $testname, should be $test_name

Signed-off-by: Eryu Guan <eguan@redhat.com>
Reviewed-by: Rich Johnston <rjohnston@sgi.com>
Signed-off-by: Rich Johnston <rjohnston@sgi.com>
This commit is contained in:
Eryu Guan
2013-05-29 08:12:44 -05:00
committed by Rich Johnston
parent f45c688157
commit 38d58591fc
+1 -1
View File
@@ -242,7 +242,7 @@ if $have_test_arg; then
test_name=`basename $1`
group_file=$SRC_DIR/$test_dir/group
if grep "^$testname" $group_file >/dev/null ; then
if grep "^$test_name" $group_file >/dev/null ; then
# in group file ... OK
echo $SRC_DIR/$1 >>$tmp.list
else