29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
if [[ "x$1" == "x" ]];then
echo "Usage: $usage"
exit
fi
# Since the user may not have . on the path and since we are likely to want to
# run test scripts in the current directory add the current dir to the path
export PATH=$PATH:$PWD
testrundir=$1; shift
stepname=$1;shift
command=$*
allstatus=99
runstatus=99
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
if [[ "x$1" == "x" ]];then
echo "Usage: $usage"
exit
fi
# Since the user may not have . on the path and since we are likely to want to
# run test scripts in the current directory add the current dir to the path
export PATH="$PATH:$PWD"
testrundir=$1; shift
stepname=$1;shift
command=$*
allstatus=99
runstatus=99
|