Overview
Comment: | Fixed typo on work area environment setting |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c5d5ee467e9c859457e16882e0cb4379 |
User & Date: | mrwellan on 2011-05-09 15:21:08 |
Other Links: | manifest | tags |
Context
2011-05-09
| ||
18:06 | Exit status handling has to be hard coded to a number, can't seem to get a variable to work check-in: 290c7d7cc8 user: mrwellan tags: trunk | |
15:21 | Fixed typo on work area environment setting check-in: c5d5ee467e user: mrwellan tags: trunk | |
2011-05-08
| ||
10:44 | Added optional runsdir to setup section for controling where the runs link tree is created check-in: 6e469f08c6 user: matt tags: trunk | |
Changes
Modified megatest.scm from [69504632d4] to [e3ee7a0cc4].
︙ | ︙ | |||
313 314 315 316 317 318 319 | (itemdat (assoc/default 'itemdat cmdinfo)) (runname (assoc/default 'runname cmdinfo)) (mt-bindir-path (assoc/default 'mt-bindir-path cmdinfo)) (fullrunscript (conc testpath "/" runscript)) (db #f)) (print "Exectuing " test-name " on " (get-host-name)) (change-directory testpath) | | | 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | (itemdat (assoc/default 'itemdat cmdinfo)) (runname (assoc/default 'runname cmdinfo)) (mt-bindir-path (assoc/default 'mt-bindir-path cmdinfo)) (fullrunscript (conc testpath "/" runscript)) (db #f)) (print "Exectuing " test-name " on " (get-host-name)) (change-directory testpath) (setenv "MT_TEST_RUN_DIR" work-area) (setenv "MT_TEST_NAME" test-name) (setenv "MT_ITEM_INFO" (conc itemdat)) (setenv "MT_RUNNAME" runname) (setenv "PATH" (conc (getenv "PATH") ":" mt-bindir-path)) (if (not (setup-for-run)) (begin (print "Failed to setup, exiting") |
︙ | ︙ |