From: Vladimir Saveliev Date: Tue, 10 Aug 2010 17:07:04 +0000 (+0400) Subject: b=23271 fix typo X-Git-Tag: 2.0.50.0~9 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=ccacd9165408df7844ec878e3cffa7d6b7a923df b=23271 fix typo there has to be no space between the lvalue and the '=' --- diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index a690b1c..e143e3b 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -2228,7 +2228,7 @@ run_e2fsck() { local cmd="$E2FSCK -d -v -f -n $MDSDB_OPT $ostdb_opt $target_dev" echo $cmd local rc=0 - do_node $node $cmd || rc =$? + do_node $node $cmd || rc=$? [ $rc -le $FSCK_MAX_ERR ] || \ error "$cmd returned $rc, should be <= $FSCK_MAX_ERR" return 0