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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
usage="mt_ezstep stepname prevstepname command [args ...]"
if [[ "$MT_CMDINFO" == "" ]];then
if [[ -e megatest.sh ]];then
source megatest.sh
else
echo "ERROR: $0 should be run within a megatest test environment"
echo "Usage: $usage"
exit
fi
fi
# Purpose: This is for the [ezsteps] secton in your testconfig file.
# DO NOT USE IN YOUR SCRIPTS!
#
# Call like this:
# mt_ezstep stepname prevstepname command ....
#
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
stepname=$1;shift
prevstepname=$1;shift
command=$*
allstatus=99
runstatus=99
logpropstatus=99
# prev_env=".ezsteps/${prevstepname}.sh"
# echo "prev_env=$prev_env"
# if [[ -e "${prev_env}" ]];then
# source $prev_env
# fi
# source the environment from the previous step if it exists
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [[ -e ${stepname}.logpro ]];then
# could do:
$command 2>&1| tee ${stepname}.log | logpro ${stepname}.logpro ${stepname}.html &> /dev/null
logprostatus=$?
# $command 2>&1| logpro ${stepname}.logpro ${stepname}.html &> ${stepname}.log
# allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
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
|
|
<
<
<
<
<
<
<
<
<
|
|
<
>
>
>
>
>
>
>
>
>
>
>
>
<
<
<
<
<
<
<
<
<
|
>
|
<
<
<
<
|
<
<
|
<
|
<
|
>
|
>
|
<
|
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
usage="mt_ezstep stepname command [args ...]"
# Purpose: This is for the [ezsteps] secton in your testconfig file.
# DO NOT USE IN YOUR SCRIPTS!
#
# Call like this:
# mt_ezstep stepname prevstepname command ....
#
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
logpropstatus=99
# prev_env=".ezsteps/${prevstepname}.sh"
# echo "prev_env=$prev_env"
# if [[ -e "${prev_env}" ]];then
# source $prev_env
# fi
# source the environment from the previous step if it exists
cd $testrundir
#if [[ "$MT_CMDINFO" == "" ]];then
if [[ -e megatest.sh ]];then
source megatest.sh
else
echo "ERROR: $0 should be run within a megatest test environment"
echo "Usage: $usage"
exit
fi
#fi
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [[ -e ${stepname}.logpro ]];then
eval $command 2>&1 ${stepname}.log
runstatus=$?
logpro ${stepname}.logpro ${stepname}.html &> /dev/null < ${stepname}.log
logprostatus=$?
if [[ $runstatus == 0 ]]; then
exitstatus=$logprostatus
else
exitstatus=$runstatus
fi
else
eval $command &> ${stepname}.log
exitstatus=$?
fi
exit $exitstatus
|