Overview
Comment: | Added run-id to run info panel, brought launch commands in line with new test spec mechanism |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b6b6ac85535ce4ed170df6032d52070d |
User & Date: | mrwellan on 2012-10-15 10:38:26 |
Other Links: | manifest | tags |
Context
2012-10-15
| ||
10:41 | Bumped version check-in: 0791ec1f09 user: fdk71adm tags: trunk, v1.50 | |
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 | |
Changes
Modified dashboard-tests.scm from [629d0b3d1c] to [fa14a1a9fc].
︙ | |||
131 132 133 134 135 136 137 | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | - + - + + + | #:title "Megatest Run Info" ; #:expand "YES" (iup:hbox ; #:expand "YES" (apply iup:vbox ; #:expand "YES" (append (map (lambda (keyval) (iup:label (conc (car keyval) " ") ; #:expand "HORIZONTAL" )) keydat) |
︙ | |||
346 347 348 349 350 351 352 | 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | - - - - + + + + - - - - + + + + | (command-text-box (iup:textbox #:expand "HORIZONTAL" #:font "Courier New, -10")) (command-launch-button (iup:button "Execute!" #:action (lambda (x) (let ((cmd (iup:attribute command-text-box "VALUE"))) (system (conc cmd " &")))))) (run-test (lambda (x) (iup:attribute-set! command-text-box "VALUE" |
︙ |