Overview
Comment: | Extracted aliases into scripts for convience functions mt_runstep and mt_laststep, fixed validvalues handling |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
06c4198b8e27eca7d6b5b8609c32a73c |
User & Date: | matt on 2011-09-25 18:02:09 |
Other Links: | manifest | tags |
Context
2011-09-25
| ||
18:54 | Fixed sorting issue on steps in dashboard check-in: 89b1a10150 user: matt tags: trunk | |
18:02 | Extracted aliases into scripts for convience functions mt_runstep and mt_laststep, fixed validvalues handling check-in: 06c4198b8e user: matt tags: trunk | |
15:40 | Fixed broken -list-runs, dashboard key filters check-in: 2ab4dded8c user: matt tags: trunk | |
Changes
Modified dashboard.scm from [d2fd43fdf3] to [f4b8fd3a36].
︙ | |||
528 529 530 531 532 533 534 535 536 | 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + | (set! *num-tests* (min (max (update-rundat "%" *num-runs* "%" "%" '()) 8) 20))) (define *tim* (iup:timer)) (define *ord* #f) (iup:attribute-set! *tim* "TIME" 300) (iup:attribute-set! *tim* "RUN" "YES") ;; Move this stuff to db.scm FIXME ;; (define *last-db-update-time* (file-modification-time (conc *toppath* "/megatest.db"))) (define (db:been-changed) (> (file-modification-time (conc *toppath* "/megatest.db")) *last-db-update-time*)) (define (db:set-db-update-time) (set! *last-db-update-time* (file-modification-time (conc *toppath* "/megatest.db")))) (define (run-update x) (update-buttons uidat *num-runs* *num-tests*) ;; (if (db:been-changed) (begin |
︙ |
Modified runs.scm from [9b2009f6fd] to [55aae7c602].
︙ | |||
404 405 406 407 408 409 410 | 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | - + - + | (status (check-valid-items "status" status-in)) (item-path (item-list->path itemdat)) (testdat (db:get-test-info db run-id test-name item-path))) (debug:print 5 "testdat: " testdat) (if (and testdat ;; if the section exists then force specification BUG, I don't like how this works. (or (not state)(not status))) (debug:print 0 "WARNING: Invalid " (if status "status" "state") |
︙ |
Modified tests/megatest.config from [077783b818] to [dd77d506f9].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | ## use "xterm -e csi -- " as a launcher to examine the launch environment. ## exit with (exit) ## get a shell with (system "bash") # launcher xterm -e csi -- [validvalues] state start end completed |
︙ |
Added utils/mt_laststep version [3e6695b426].
|
Added utils/mt_runstep version [35ded54591].
|
Modified utils/mtutils.csh from [d975762c89] to [23f4997ab4].
|