Overview
Comment: | Improved ez test tests and mt_ezstep script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1bb1c0782c10799072294d547c2ab41a |
User & Date: | matt on 2011-11-15 21:48:58 |
Other Links: | manifest | tags |
Context
2011-11-16
| ||
10:49 | Fixed dashboard failing to update sometimes, minor tweak to Makefile check-in: d1ee9f149a user: mrwellan tags: trunk | |
2011-11-15
| ||
21:48 | Improved ez test tests and mt_ezstep script check-in: 1bb1c0782c user: matt tags: trunk | |
20:42 | Cleaned out some junk files check-in: 633d859e65 user: matt tags: trunk | |
Changes
Modified launch.scm from [d206050f69] to [31b7f8fd50].
︙ | |||
166 167 168 169 170 171 172 | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | - - - - + + + + + - + | (logpro-used #f)) ;; NB// can safely assume we are in test-area directory (debug:print 4 "ezsteps:\n stepname: " stepname " stepinfo: " stepinfo " stepparts: " stepparts " stepparms: " stepparms " stepcmd: " stepcmd) (if (file-exists? (conc stepname ".logpro"))(set! logpro-used #t)) |
︙ |
Added tests/tests/ez_exit2_fail/testconfig version [fc174ee7f2].
|
Deleted tests/tests/ez_warn/testconfig version [fc174ee7f2].
| - - - - - - - - - - - - - - - |
|
Modified tests/tests/ezlog_fail/lookittmp.logpro from [272f1780da] to [961ab4aef4].
1 2 3 4 | 1 2 3 4 5 6 | - - | ;; (c) 2006,2007,2008,2009 Matthew Welland matt@kiatoa.com ;; ;; License GPL. |
Modified utils/mt_ezstep from [41dcc3da03] to [e004bfd05c].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - + + + + + + + + | #!/bin/bash if [ "$MT_CMDINFO" == "" ];then echo "ERROR: $0 should be run within a megatest test environment" exit fi # Purpose: This is for the [ezsteps] secton in your testconfig file. # DO NOT USE IN YOUR SCRIPTS! # # Call like this: |
︙ |