From: Jian Yu Date: Thu, 25 Feb 2010 08:31:58 +0000 (-0800) Subject: b=21097 quote the passing on of it's own arguments through $@ X-Git-Tag: 1.10.0.38~22 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=b1f2e77c596b50bae096845644f336bf1c37edd1 b=21097 quote the passing on of it's own arguments through $@ Fix do_nodes() in acc-sm test-framework to quote the passing on of it's own arguments through $@ to do_node(). i=jian.yu i=edg --- diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 5726c3d..e2d5bc0 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -1563,9 +1563,9 @@ do_nodes() { if single_local_node $rnodes; then if $verbose; then - do_node --verbose $rnodes $@ + do_node --verbose $rnodes "$@" else - do_node $rnodes $@ + do_node $rnodes "$@" fi return $? fi