Overview
Comment: | Manual tweaks to display of tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60_defunct |
Files: | files | file ages | folders |
SHA1: |
de6124e35058542062d428bb69af35e7 |
User & Date: | mrwellan on 2016-03-21 09:34:54 |
Other Links: | branch diff | manifest | tags |
Context
2016-03-21
| ||
20:39 | Use env var to trigger loading scripts check-in: 67f07adab1 user: mrwellan tags: v1.60_defunct | |
09:34 | Manual tweaks to display of tests check-in: de6124e350 user: mrwellan tags: v1.60_defunct | |
2016-03-15
| ||
23:42 | More dashboard refactoring check-in: 705ae1d971 user: matt tags: v1.60_defunct | |
Changes
Modified dashboard.scm from [3f12e09023] to [a2d6eeaf25].
︙ | |||
859 860 861 862 863 864 865 | 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | - + | ((originx originy) (canvas-origin cnv))) ;; (print "originx: " originx " originy: " originy) ;; (canvas-origin-set! cnv 0 (- (/ sizey 2))) (if (hash-table-ref/default tests-draw-state 'first-time #t) (begin (hash-table-set! tests-draw-state 'first-time #f) (hash-table-set! tests-draw-state 'scalef 1) |
︙ |
Modified launch.scm from [9cf499b876] to [4e7eba38a4].
︙ | |||
157 158 159 160 161 162 163 | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | - + - | (if (eq? this-step-status 'fail) 'fail 'warn)) ((eq? overall-status 'abort) 'abort) (else 'fail))) (next-state ;; "RUNNING") ;; WHY WAS THIS CHANGED TO NOT USE (null? tal) ?? (cond ((null? tal) ;; more to run? "COMPLETED") |
︙ |
Modified tests.scm from [d8f0eca904] to [5b29cc1f30].
︙ | |||
858 859 860 861 862 863 864 865 866 867 868 869 870 871 | 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 | + | (define (tests:easy-dot test-records outtype) (let-values (((fd temp-path) (file-mkstemp (conc "/tmp/" (current-user-name) ".XXXXXX")))) (let ((all-testnames (hash-table-keys test-records)) (temp-port (open-output-file* fd))) ;; (format temp-port "This file is ~A.~%" temp-path) (format temp-port "digraph tests {\n") (format temp-port " size=4,8\n") ;; (format temp-port " splines=none\n") (for-each (lambda (testname) (let* ((testrec (hash-table-ref test-records testname)) (waitons (or (tests:testqueue-get-waitons testrec) '()))) (for-each (lambda (waiton) |
︙ | |||
889 890 891 892 893 894 895 | 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 | - + + + | (define (tests:tests->dot test-records) (let ((all-testnames (hash-table-keys test-records))) (if (null? all-testnames) '() (let loop ((hed (car all-testnames)) (tal (cdr all-testnames)) |
︙ |