Overview
Comment: | Merged in v1.63 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | run-mgr |
Files: | files | file ages | folders |
SHA1: |
ec12264594940da3690eb42d77699b26 |
User & Date: | mrwellan on 2017-02-16 10:27:59 |
Other Links: | branch diff | manifest | tags |
Context
2017-02-16
| ||
21:42 | Fixed wildcards in runconfigs, cleared some output debug noise. check-in: 2feae1cd63 user: matt tags: run-mgr | |
10:27 | Merged in v1.63 check-in: ec12264594 user: mrwellan tags: run-mgr | |
07:54 | Bump version to v1.6308 check-in: c0783292db user: mrwellan tags: v1.63, v1.6308 | |
2017-02-15
| ||
15:19 | Moved rungen.config to runconfigs.config check-in: fe62eba160 user: mrwellan tags: run-mgr | |
Changes
Modified dashboard.scm from [9bbb1ee284] to [3c2c4d9017].
︙ | |||
209 210 211 212 213 214 215 | 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | - + | ;; Runs view ((buttondat (make-hash-table)) : hash-table) ;; ((item-test-names '()) : list) ;; list of itemized tests ((run-keys (make-hash-table)) : hash-table) (runs-matrix #f) ;; used in newdashboard ((start-run-offset 0) : number) ;; left-right slider value ((start-test-offset 0) : number) ;; up-down slider value |
︙ | |||
3078 3079 3080 3081 3082 3083 3084 | 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 | - + | (min (vector-ref (car dat) 2)) (max (vector-ref (car dat) 2))) (let* ((val (vector-ref hed 2)) (newmin (if (< val min) val min)) (newmax (if (> val max) val max)) (newres (cons val res))) (if (null? tal) |
︙ |
Modified db.scm from [500d07bb80] to [e5f086bd0f].
︙ | |||
2638 2639 2640 2641 2642 2643 2644 | 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 | - + + | (db:with-db dbstruct run-id #f (lambda (db) (sqlite3:first-result db |
︙ | |||
2719 2720 2721 2722 2723 2724 2725 | 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 | - + - + | run-id))) res)) (define (db:replace-test-records dbstruct run-id testrecs) (db:with-db dbstruct run-id #t (lambda (db) (let* ((qmarks (string-intersperse (make-list (length db:test-record-fields) "?") ",")) |
︙ | |||
3627 3628 3629 3630 3631 3632 3633 | 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 | - - + + + | run-id #f (lambda (db) (sqlite3:for-each-row (lambda (id itempath state status run_duration logf comment) (set! res (cons (vector id itempath state status run_duration logf comment) res))) db |
︙ |
Modified megatest-version.scm from [ecea7b3d2a] to [813a77d970].
1 2 3 4 5 | 1 2 3 4 5 6 7 | - + | ;; Always use two or four digit decimal ;; 1.01, 1.02...1.10,1.11,1.1101 ... 1.99,2.00.. (declare (unit megatest-version)) |