Overview
Comment: | corrected --modepatt switch to match spec (was -mode) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.63 |
Files: | files | file ages | folders |
SHA1: |
08cbc397c9e997490dad0f324b94c711 |
User & Date: | bjbarcla on 2017-01-23 12:52:02 |
Other Links: | branch diff | manifest | tags |
Context
2017-01-23
| ||
12:52 | Updated mk_wrapper to have dashboard check that we are on homehost before launching check-in: 55828c6039 user: bjbarcla tags: v1.63 | |
12:52 | corrected --modepatt switch to match spec (was -mode) check-in: 08cbc397c9 user: bjbarcla tags: v1.63 | |
2017-01-21
| ||
22:57 | Merged in db refresh timestamp gate check-in: f24fe39093 user: matt tags: v1.63 | |
Changes
Modified common.scm from [7eb7ab294e] to [040477db58].
︙ | |||
819 820 821 822 823 824 825 | 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 | - + | (define (common:args-get-status) (or (args:get-arg "-status")(args:get-arg ":status"))) (define (common:args-get-testpatt rconf) (let* ((tagexpr (args:get-arg "-tagexpr")) (tags-testpatt (if tagexpr (string-join (runs:get-tests-matching-tags tagexpr) ",") #f)) |
︙ |
Modified megatest.scm from [ba3fdf979e] to [66a95d5158].
︙ | |||
91 92 93 94 95 96 97 | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | - + | Selectors (e.g. use for -runtests, -remove-runs, -set-state-status, -list-runs etc.) -target key1/key2/... : run for key1, key2, etc. -reqtarg key1/key2/... : run for key1, key2, etc. but key1/key2 must be in runconfig -testpatt patt1/patt2,patt3/... : % is wildcard -runname : required, name for this particular test run -state : Applies to runs, tests or steps depending on context -status : Applies to runs, tests or steps depending on context |
︙ | |||
210 211 212 213 214 215 216 | 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | - + | "-runname" ":state" "-state" ":status" "-status" "-list-runs" "-testpatt" |
︙ |