Whamcloud - gitweb
b=23049 various t-f.sh patches
authorElena Gryaznova <elena.gryaznova@oracle.com>
Mon, 20 Dec 2010 16:11:01 +0000 (19:11 +0300)
committerAndrew Perepechko <andrew.perepechko@oracle.com>
Mon, 20 Dec 2010 20:36:37 +0000 (23:36 +0300)
o=Brian.Murrell
i=grev

rundbench is a bash script;
obdfilter-survey is a bash script;
don't su if MPI_USER == "";

lustre/tests/functions.sh
lustre/tests/obdfilter-survey.sh
lustre/tests/rundbench

index 0953391..63d3868 100644 (file)
@@ -31,7 +31,7 @@ mpi_run () {
     local rc
     $LFS df -i
 
-    if [ "$MPI_USER" != root -a $mpirun ]; then
+    if [ -n "$MPI_USER" -a "$MPI_USER" != root -a -n "$mpirun" ]; then
         echo "+ chmod 0777 $MOUNT"
         chmod 0777 $MOUNT
         command="su $MPI_USER sh -c \"$command \""
index 7adc4b9..42187af 100644 (file)
@@ -72,7 +72,7 @@ obdflter_survey_run () {
        rm -f ${TMP}/obdfilter_survey*
 
        local targets=$(obdflter_survey_targets $case)
-       local cmd="NETTYPE=$NETTYPE thrlo=$thrlo nobjhi=$nobjhi thrhi=$thrhi size=$size case=$case rslt_loc=${TMP} targets=\"$targets\" sh $OBDSURVEY"
+       local cmd="NETTYPE=$NETTYPE thrlo=$thrlo nobjhi=$nobjhi thrhi=$thrhi size=$size case=$case rslt_loc=${TMP} targets=\"$targets\" $OBDSURVEY"
        echo + $cmd
        eval $cmd
 
index ad938da..ab9f236 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
 . $LUSTRE/tests/test-framework.sh