Overview
Comment: | Changed a print from debug 0 to 4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.90 |
Files: | files | file ages | folders |
SHA1: |
644eb3c1e41c8263e68017371fdc5029 |
User & Date: | mmgraham on 2024-02-26 11:31:21 |
Other Links: | branch diff | manifest | tags |
Context
2024-04-23
| ||
05:51 | Minor improvements to Makefile check-in: 9c09fbe127 user: mrwellan tags: v1.90 | |
2024-02-26
| ||
11:31 | Changed a print from debug 0 to 4 check-in: 644eb3c1e4 user: mmgraham tags: v1.90 | |
2024-02-23
| ||
17:40 | added nice-path to declarations in commonmod.scm to fix itemwait test. Changed #f to for null log file to prevent type mismatch warning check-in: b7ea5abf1a user: mmgraham tags: v1.90 | |
Changes
Modified launchmod.scm from [466715ec03] to [8732390fb1].
︙ | ︙ | |||
1012 1013 1014 1015 1016 1017 1018 | (html-file (conc stepname ".html")) (dat-file (conc stepname ".dat")) (tconfig-logpro (configf:lookup testconfig "logpro" stepname)) (logpro-used (common:file-exists? logpro-file)) (mtexepath (common:get-megatest-exe-path))) (setenv "MT_STEP_NAME" stepname) (hash-table-set! all-steps-dat stepname `((params . ,paramparts))) | | | 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 | (html-file (conc stepname ".html")) (dat-file (conc stepname ".dat")) (tconfig-logpro (configf:lookup testconfig "logpro" stepname)) (logpro-used (common:file-exists? logpro-file)) (mtexepath (common:get-megatest-exe-path))) (setenv "MT_STEP_NAME" stepname) (hash-table-set! all-steps-dat stepname `((params . ,paramparts))) (debug:print 4 *default-log-port* "stepparts: " stepparts ", stepparams: " stepparams ", paramparts: " paramparts ", subrun: " subrun ", stepcmd: " stepcmd) (if (and tconfig-logpro (not logpro-used)) ;; no logpro file found but have a defn in the testconfig (begin (with-output-to-file logpro-file (lambda () |
︙ | ︙ |