10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#
# Call like this:
# mt_ezstep stepname command ....
#
stepname=$1;shift
command=$*
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [ -e ${stepname}.logpro ];then
$command 2>&1| logpro ${stepname}.logpro ${stepname}.html &> ${stepname}.log
allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
runstatus=${allstatus[0]}
logprostatus=${allstatus[1]}
else
$command &> ${stepname}.log
runstatus=$?
logprostatus=$runstatus
fi
# If the test exits with non-zero, we will record FAIL even if logpro
# says it is a PASS
if [ $runstatus -ne 0 ]; then
exitstatus=$runstatus
elif [ $logprostatus -eq 0 ]; then
exitstatus=$logprostatus
elif [ $logprostatus -eq 2 ]; then
exitstatus=0
else
exitstatus=1
fi
$MT_MEGATEST -env2file .ezsteps/${stepname}
exit $exitstatus
|
>
>
>
>
|
>
>
|
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#
# Call like this:
# mt_ezstep stepname command ....
#
stepname=$1;shift
command=$*
allstatus=99
runstatus=99
logpropstatus=99
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [ -e ${stepname}.logpro ];then
$command 2>&1| logpro ${stepname}.logpro ${stepname}.html &> ${stepname}.log
allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
runstatus=${allstatus[0]}
logprostatus=${allstatus[1]}
else
$command &> ${stepname}.log
runstatus=$?
logprostatus=$runstatus
fi
# If the test exits with non-zero, we will record FAIL even if logpro
# says it is a PASS
if [ $runstatus -ne 0 ]; then
exitstatus=$runstatus
elif [ $logprostatus -eq 0 ]; then
exitstatus=$logprostatus
elif [ $logprostatus -eq 2 ]; then
exitstatus=2
elif [ $logprostatus -eq 1 ]; then
exitstatus=1
else
exitstatus=0
fi
$MT_MEGATEST -env2file .ezsteps/${stepname}
exit $exitstatus
|