From: Eryu Guan Date: Wed, 29 May 2013 13:12:44 +0000 (-0500) Subject: xfstests: fix typo in check X-Git-Tag: v2022.05.01~3420 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=38d58591fc0607bfd262fc8d363e52047fcf0e9c;p=users%2Fhch%2Fxfstests-dev.git xfstests: fix typo in check There is no $testname, should be $test_name Signed-off-by: Eryu Guan Reviewed-by: Rich Johnston Signed-off-by: Rich Johnston --- diff --git a/check b/check index a79747eca..8d324860f 100755 --- a/check +++ b/check @@ -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