Overview
Comment: | More work on itemmaps |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
7f979aed51bed1d0cae33c348431ce1e |
User & Date: | matt on 2015-09-13 02:11:28 |
Other Links: | branch diff | manifest | tags |
Context
2015-09-13
| ||
22:15 | Basic support for waitors added to testconfig handling check-in: 5f864575d1 user: matt tags: v1.60 | |
02:11 | More work on itemmaps check-in: 7f979aed51 user: matt tags: v1.60 | |
2015-09-12
| ||
05:26 | itemmap table lookup needed to return the cdr of the found data. check-in: a01207a48a user: matt tags: v1.60 | |
Changes
Modified dashboard-tests.scm from [9666ae3621] to [e8f3d0e868].
︙ | |||
601 602 603 604 605 606 607 | 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 | - + - - + + - + | command-text-box "VALUE" (conc "megatest -remove-runs -target " keystring " -runname " runname " -testpatt " (conc testname "/" (if (equal? item-path "") "%" item-path)) " -v")))) (clean-run-execute (lambda (x) |
︙ |
Modified docs/manual/reference.txt from [ae56b797b4] to [88bde1cc13].
︙ | |||
184 185 186 187 188 189 190 | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | - - + | .Testconfig for Test C ---------------------- [requirements] waiton A B [itemmap] A (\d+)/aa aa/\1 |
︙ | |||
210 211 212 213 214 215 216 | 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | - + + | .Autogeneration waiton list for dynamic flow dependency trees ------------------- [requirements] # With a toplevel test you may wish to generate your list # of tests to run dynamically # |
︙ |
Modified tests.scm from [6518306e90] to [2605fb7b0b].
︙ | |||
82 83 84 85 86 87 88 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + - + + + + + + + + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + | ;; # itemmap entry in requirements (legacy). The itemmap ;; # requirements entry is deprecated ;; (define (tests:get-itemmaps tconfig) (let ((base-itemmap (configf:lookup tconfig "requirements" "itemmap")) (itemmap-table (configf:get-section tconfig "itemmap"))) (append (if base-itemmap |
︙ |