Differences From Artifact [d882ace026]:
- Executable file utils/mt_ezstep — part of check-in [39b53fe321] at 2012-03-25 14:41:27 on branch trunk — Fixed updating of test run meta data (user: matt, size: 1670) [annotate] [blame] [check-ins using]
To Artifact [bafa45892c]:
- Executable file utils/mt_ezstep — part of check-in [ae5dd4f3a6] at 2012-03-25 15:15:25 on branch trunk — Added current dir to end of path so that on systems without . in the path the script will still be found (user: matt, size: 1850) [annotate] [blame] [check-ins using]
︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + + + + | # 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 |
︙ |