Overview
Comment: | Moved generation of test lists until after the runconfigs is processed. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
814b1a6d18e357c7d13c5ceb12417ad6 |
User & Date: | mrwellan on 2014-06-23 10:12:18 |
Other Links: | branch diff | manifest | tags |
Context
2014-06-23
| ||
13:40 | Improved info in tests listings at start of run check-in: 21ea7c1001 user: mrwellan tags: v1.55 | |
10:12 | Moved generation of test lists until after the runconfigs is processed. check-in: 814b1a6d18 user: mrwellan tags: v1.55 | |
00:57 | set default sort in config file (not working quite right yet, fails to init but works thereafter) check-in: 43115cbdd6 user: matt tags: v1.55 | |
Changes
Modified megatest-version.scm from [002fd665e3] to [08dccbed62].
1 2 3 4 5 | 1 2 3 4 5 6 7 | - + | ;; Always use two digit decimal ;; 1.01, 1.02...1.10,1.11 ... 1.99,2.00.. (declare (unit megatest-version)) |
Modified runs.scm from [4e5c067164] to [3cee2c6c73].
︙ | |||
208 209 210 211 212 213 214 | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | + - - - - + + + + + + + + + + | (common:clear-caches) ;; clear all caches (let* ((keys (keys:config-get-fields *configdat*)) (keyvals (keys:target->keyval keys target)) (run-id (cdb:remote-run db:register-run #f keyvals runname "new" "n/a" user)) ;; test-name))) (deferred '()) ;; delay running these since they have a waiton clause (runconfigf (conc *toppath* "/runconfigs.config")) (test-records (make-hash-table)) ;; need to process runconfigs before generating these lists |
︙ |