From b1f2e77c596b50bae096845644f336bf1c37edd1 Mon Sep 17 00:00:00 2001 From: Jian Yu Date: Thu, 25 Feb 2010 00:31:58 -0800 Subject: [PATCH] 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 --- lustre/tests/test-framework.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.8.3.1