Whamcloud - gitweb
b=21097 quote the passing on of it's own arguments through $@
authorJian Yu <Jian.Yu@Sun.COM>
Tue, 23 Feb 2010 07:14:00 +0000 (15:14 +0800)
committerJohann Lombardi <johann@sun.com>
Thu, 25 Feb 2010 12:54:50 +0000 (13:54 +0100)
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

index 2c15313..76b29d8 100644 (file)
@@ -1331,9 +1331,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