Overview
Comment: | wip, compiles |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.90-proper-interface-lists |
Files: | files | file ages | folders |
SHA1: |
bbdb4048748938c9a7f290c16a4674e5 |
User & Date: | mrwellan on 2024-02-12 14:31:25 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-12
| ||
15:42 | repl runs check-in: b969852101 user: mrwellan tags: v1.90-proper-interface-lists | |
14:31 | wip, compiles check-in: bbdb404874 user: mrwellan tags: v1.90-proper-interface-lists | |
13:45 | wip check-in: e0be4c40b4 user: mrwellan tags: v1.90-proper-interface-lists | |
Changes
Modified commonmod.scm from [383f62c6d4] to [26ca4d0bed].
︙ | |||
276 277 278 279 280 281 282 | 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | + - + + + + + + + + + + + | common:clear-caches db:mintest-get-event_time *test-meta-updated* tests:testqueue-set-item_path! tests:testqueue-set-itemdat! make-tests:testqueue megatest-fossil-hash |
︙ |
Modified configfmod.scm from [deed360501] to [8facfee8f8].
︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | + + | configf:read-alist configf:config->alist configf:alist->config configf:set-section-var find-and-read-config common:args-get-target configf:eval-string-in-environment ) (import scheme chicken extras files matchable |
︙ |
Modified dbmod.scm from [6473e71a88] to [4ab5fd7962].
︙ | |||
165 166 167 168 169 170 171 172 173 174 175 176 177 178 | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | + | db:get-header db:get-rows db:get-changed-run-ids db:set-sync db:setup db:logpro-dat->csv ) (import scheme) (cond-expand (chicken-4 (import chicken |
︙ |
Modified launchmod.scm from [85fd072687] to [a0b277c06f].
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | - | (declare (uses runsmod)) (declare (uses fsmod)) (use srfi-69) (module launchmod ( |
︙ | |||
979 980 981 982 983 984 985 | 978 979 980 981 982 983 984 985 986 987 988 989 990 991 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | #f))) ;; now wait on that process if all is correct ;; periodically update the db with runtime ;; when the process exits look at the db, if still RUNNING after 10 seconds set ;; state/status appropriately (process-wait pid))) |
︙ |
Modified processmod.scm from [42996e8ab1] to [1199556817].
︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + + | (module processmod ( process:cmd-run->list process:alive? run-n-wait process:cmd-run-with-stderr-and-exitcode->list process:alive-on-host? process:get-sub-pids ) (import scheme) (cond-expand (chicken-4 (import chicken |
︙ |
Modified rmtmod.scm from [5bfa5082f0] to [34cdc62311].
︙ | |||
125 126 127 128 129 130 131 132 133 134 135 136 137 138 | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | + + + + + + + + + + + + | rmt:tasks-set-state-given-param-key rmt:register-run rmt:get-count-tests-running-in-jobgroup rmt:get-count-tests-running-for-run-id rmt:test-set-state-status-by-id mt:test-set-state-status-by-id rmt:get-status-from-final-status-file rmt:get-toplevels-and-incompletes rmt:test-set-log! rmt:teststep-set-status! rmt:delete-steps-for-test! rmt:test-set-state-status rmt:get-test-state-status-by-id rmt:test-set-top-process-pid ) (import scheme chicken data-structures regex |
︙ |
Modified runsmod.scm from [135fde13aa] to [2e2fa19e43].
︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + + + + + + + + | (declare (uses archivemod)) (declare (uses fsmod)) (use srfi-69) (module runsmod ( rmt:find-and-mark-incomplete launch:setup launch:end-of-run-check launch:test-copy set-item-env-vars runs:set-megatest-env-vars full-runconfigs-read ) (import scheme) (cond-expand (chicken-4 (import chicken |
︙ | |||
4539 4540 4541 4542 4543 4544 4545 4546 | 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 | + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | (if (member (symbol->string archive-command) '("save-remove")) (begin (debug:print-info 0 *default-log-port* "remove testdat") (runs:remove-test-directory test-dat 'archive-remove))))) (hash-table-ref test-groups test-base))))) (hash-table-keys disk-groups)) #t)) ;;====================================================================== ;; Maintenance ;;====================================================================== |
Modified subrunmod.scm from [0a6ed5a468] to [f63d1179cd].
︙ | |||
45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | + + | ( subrun:set-state-status subrun:kill-subrun subrun:get-log-path subrun:remove-subrun subrun:subrun-removed? subrun:subrun-test-initialized? subrun:launch-cmd subrun:initialize-toprun-test ) (import scheme) (cond-expand (chicken-4 (import chicken |
︙ |
Modified tasksmod.scm from [4185a9e4a7] to [1d99e1d940].
︙ | |||
46 47 48 49 50 51 52 53 54 55 56 57 58 59 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | + + | common:simple-unlock common:simple-lock tests:test-set-status! common:get-launcher tasks:kill-runner tests:get-testconfig tests:get-waitons tests:get-test-path-from-environment ) (import scheme) (cond-expand (chicken-4 |
︙ |
Modified testsmod.scm from [9eb37a6a8e] to [70de32f7f8].
︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | + + + + | (module testsmod ( tests:summarize-items tests:filter-non-runnable tests:sort-by-priority-and-waiton tests:summarize-test tests:save-final-status tests:update-central-meta-info tests:set-full-meta-info ) (import scheme) (cond-expand (chicken-4 (import chicken |
︙ |