Overview
Comment: | Added wrapping of test desciption at 40 chars |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1dca81e5c46b75b536c6b98ad64ccf84 |
User & Date: | mrwellan on 2012-10-15 10:06:21 |
Other Links: | manifest | tags |
Context
2012-10-15
| ||
10:38 | Added run-id to run info panel, brought launch commands in line with new test spec mechanism check-in: b6b6ac8553 user: mrwellan tags: trunk | |
10:06 | Added wrapping of test desciption at 40 chars check-in: 1dca81e5c4 user: mrwellan tags: trunk | |
08:54 | Merged in some leftover changes.... check-in: 737532df21 user: mrwellan tags: trunk | |
Changes
Modified dashboard-tests.scm from [d6078f5f53] to [629d0b3d1c].
︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + | ;; PURPOSE. ;;====================================================================== ;;====================================================================== ;; Test info panel ;;====================================================================== |
︙ | |||
79 80 81 82 83 84 85 86 87 88 89 90 91 92 | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | + + + + | (lambda (testdat) (db:test-get-id testdat))) ))))) ;;====================================================================== ;; Test meta panel ;;====================================================================== (define (test-meta-panel-get-description testmeta) (fmt #f (with-width 40 (wrap-lines (db:testmeta-get-description testmeta))))) (define (test-meta-panel testmeta store-meta) (iup:frame #:title "Test Meta Data" ; #:expand "YES" (iup:hbox ; #:expand "YES" (apply iup:vbox ; #:expand "YES" (append (map (lambda (val) (iup:label val ; #:expand "HORIZONTAL" |
︙ | |||
109 110 111 112 113 114 115 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | - - + + + | (store-meta "reviewed" (iup:label (db:testmeta-get-reviewed testmeta) #:expand "HORIZONTAL") (lambda (testmeta)(db:testmeta-get-reviewed testmeta))) (store-meta "tags" (iup:label (db:testmeta-get-tags testmeta) #:expand "HORIZONTAL") (lambda (testmeta)(db:testmeta-get-tags testmeta))) (store-meta "description" |
︙ |
Modified runs.scm from [a29c4cc8ab] to [5c6e226ea2].
1 | 1 2 3 4 5 6 7 8 9 | - + |
|
︙ |