Differences From Artifact [3e6695b426]:
- Executable file utils/mt_laststep — part of check-in [06c4198b8e] at 2011-09-25 18:02:09 on branch trunk — Extracted aliases into scripts for convience functions mt_runstep and mt_laststep, fixed validvalues handling (user: matt, size: 2206) [annotate] [blame] [check-ins using]
To Artifact [7710982a12]:
- Executable file utils/mt_laststep — part of check-in [f2ad9ca9c4] at 2011-09-26 11:22:05 on branch fixup — Fixed up Makefile to install mt_ files in PREFIX (user: mrwellan, size: 2315) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 | #!/bin/bash # Purpose: run a step, record start and end with exit codes, if sucessful # update test status with PASS, else update with FAIL # # Call like this: # mt_laststep stepname command .... # | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash if [ $MT_CMDINFO == "" ];then echo "ERROR: $0 should be run within a megatest test environment" exit fi # Purpose: run a step, record start and end with exit codes, if sucessful # update test status with PASS, else update with FAIL # # Call like this: # mt_laststep stepname command .... # |
︙ | ︙ |