Overview
Comment: | Limit to 10 dbs in num-run-dbs. Fully turned off running find-and-mark in runs.scm |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.71 |
Files: | files | file ages | folders |
SHA1: |
447b257e2fd0fdb2ea265807bfffa39e |
User & Date: | matt on 2023-05-15 18:59:39 |
Original Comment: | Limit to 10 dbs. Fully turned off running find-and-mark in runs.scm |
Other Links: | branch diff | manifest | tags |
Context
2023-05-16
| ||
18:07 | Changed version to 1.7015 check-in: a01734df49 user: mmgraham tags: v1.71 | |
2023-05-15
| ||
18:59 | Limit to 10 dbs in num-run-dbs. Fully turned off running find-and-mark in runs.scm check-in: 447b257e2f user: matt tags: v1.71 | |
2023-05-08
| ||
16:46 | Added with-transaction around a for-each-row check-in: eb2060809c user: mmgraham tags: v1.70 | |
Changes
Modified db.scm from [d4dcfd72a3] to [ea93a4142c].
︙ | |||
4147 4148 4149 4150 4151 4152 4153 | 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 | - + | (changed_run_dbs (db:get-changed-run-ids since-time)) ;; gets the rundb numbers (all_run_ids (db:with-db dbstruct #f #f (lambda (dbdat db) (sqlite3:fold-row backcons '() db "SELECT id FROM runs")) ) ) |
︙ |
Modified dbfile.scm from [a0594e55e5] to [8e0e70bc74].
︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + + | ports commonmod ) ;; (import debugprint) ;; Parameters (define num-run-dbs (make-parameter 10)) ;;====================================================================== ;; R E C O R D S ;;====================================================================== ;; a single Megatest area with it's multiple dbs is ;; managed in a dbstruct ;; |
︙ | |||
194 195 196 197 198 199 200 | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | - + | (define (db:dbname->path apath dbname) (conc apath"/"dbname)) ;; POTENTIAL BUG: this implementation could produce a db file if run-id is neither #f or a number (define (dbfile:run-id->dbname run-id) (cond |
︙ |
Modified runs.scm from [6164fa6d2a] to [0a3622cb0c].
︙ | |||
808 809 810 811 812 813 814 | 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 | - + - + - + | ;; exn ;; (begin ;; (print-call-chain) ;; (print " message: " ((condition-property-accessor 'exn 'message) exn))) ;; (runs:run-tests-queue run-id runname test-records keyvals flags test-patts required-tests ;; (any->number reglen) all-tests-registry))) ;; "runs:run-tests-queue")) |
︙ |