Overview
Comment: | fixed issue where missing megatest.config setting is causing crash - part 2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
28de54b8dbfb3b2e5038fb59ab43ecf8 |
User & Date: | jmoon18 on 2019-03-18 17:46:06 |
Other Links: | branch diff | manifest | tags |
Context
2019-03-19
| ||
15:42 | Packet limiting for mtutil appears to be working properly check-in: c038aff905 user: jmoon18 tags: v1.65, v1.6526 | |
2019-03-18
| ||
17:46 | fixed issue where missing megatest.config setting is causing crash - part 2 check-in: 28de54b8db user: jmoon18 tags: v1.65 | |
17:45 | fixed issue where missing megatest.config setting is causing crash check-in: 61b1af2634 user: jmoon18 tags: v1.65 | |
Changes
Modified mtut.scm from [bc847b8350] to [2d67701c56].
︙ | ︙ | |||
1006 1007 1008 1009 1010 1011 1012 | ;;(print "cmd: " cmd) ;;(print "Areas: " all-areas) (for-each (lambda (area) ;Add code to check whether area is valid (if ;; This code checks whether the target has been passed in via argument, and only runs the specified target | | | 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 | ;;(print "cmd: " cmd) ;;(print "Areas: " all-areas) (for-each (lambda (area) ;Add code to check whether area is valid (if ;; This code checks whether the target has been passed in via argument, and only runs the specified target (and (< packets-generated (or (string->number (if (configf:lookup mtconf "setup" "max_packets_per_run") (configf:lookup mtconf "setup" "max_packets_per_run") "10000" )) 10000)) (if (args:get-arg "-target") (if (string= (args:get-arg "-target") runkey) (area-allowed? area "area-needs-to-be-run" runkey contour #f) #f) (area-allowed? area "area-needs-to-be-run" runkey contour #f))) (let* ((script (car cmd)) (params (cdr cmd)) (cmd (conc script " " contour " " area " " runkey " " std-runname " " action " " params)) (res (handle-exceptions |
︙ | ︙ |