Overview
Comment: | Fixed typo in sql stmt |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
d975509ef3595f791f250db6334df86e |
User & Date: | mrwellan on 2015-09-02 18:40:47 |
Other Links: | branch diff | manifest | tags |
Context
2015-09-03
| ||
23:39 | Added five second delay in front of run-wait code. This works around a race condition. check-in: ae43e37aac user: matt tags: v1.60 | |
2015-09-02
| ||
18:40 | Fixed typo in sql stmt check-in: d975509ef3 user: mrwellan tags: v1.60 | |
2015-09-01
| ||
23:56 | Minor tweak to rolled up status when INCOMPLETE check-in: ed5669844f user: matt tags: v1.60 | |
Changes
Modified db.scm from [43743ba72e] to [bdb2d67cdd].
︙ | |||
2953 2954 2955 2956 2957 2958 2959 | 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 | - + | WHERE testname=? AND item_path != '' AND (status NOT IN ('TEN_STRIKES','BLOCKED') OR status IN ('INCOMPLETE')) AND state in ('RUNNING','NOT_STARTED','LAUNCHED','REMOTEHOSTSTART')) > 0 THEN 'RUNNING' WHEN (SELECT count(id) FROM tests WHERE testname=? AND item_path != '' |
︙ |
Modified launch.scm from [b0fd49833a] to [0f738f6c84].
︙ | |||
894 895 896 897 898 899 900 | 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 | + + - + | (list 'env-ovrd (hash-table-ref/default *configdat* "env-override" '())) (list 'set-vars (if params (hash-table-ref/default params "-setvars" #f))) (list 'runname runname) (list 'mt-bindir-path mt-bindir-path)))))))) ;; clean out step records from previous run if they exist ;; (rmt:delete-test-step-records run-id test-id) ;; if the dir does not exist we may have a itempath where individual variables are a path, launch anyway (if (file-exists? work-area) |
︙ |
Modified runs.scm from [6ed203b31e] to [5c044d06bf].
︙ | |||
96 97 98 99 100 101 102 | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | - + | (list "default" target)) (vector target runname testpatt keys keyvals envdat mconfig runconfig serverdat transport db toppath run-id))) (define (runs:set-megatest-env-vars run-id #!key (inkeys #f)(inrunname #f)(inkeyvals #f)(intarget #f)) (let* ((target (or intarget (common:args-get-target) (get-environment-variable "MT_TARGET"))) |
︙ |