Overview
Comment: | Fixed issue with runs view filter not respecting changes in testpatt |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.61 |
Files: | files | file ages | folders |
SHA1: |
066ad4a662f4077a9c58c08771cb56e7 |
User & Date: | mrwellan on 2016-08-16 09:04:37 |
Other Links: | branch diff | manifest | tags |
Context
2016-08-16
| ||
09:37 | Some minor fixes from the dashboard refactoring check-in: 8b51b7c148 user: mrwellan tags: v1.61 | |
09:04 | Fixed issue with runs view filter not respecting changes in testpatt check-in: 066ad4a662 user: mrwellan tags: v1.61 | |
08:19 | Changed init of runs view to not call update-rundat check-in: 1489145939 user: mrwellan tags: v1.61 | |
Changes
Modified dashboard.scm from [e8bb214afa] to [7e0b35314c].
︙ | |||
571 572 573 574 575 576 577 | 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + | (all-test-ids (hash-table-keys tests-ht)) (num-tests (length all-test-ids))) ;; NOTE: bubble-up also sets the global (dboard:tabdat-item-test-names tabdat) ;; (tests (bubble-up tmptests priority: bubble-type)) ;; NOTE: 11/01/2013 This routine is *NOT* getting called excessively. ;; (debug:print 0 *default-log-port* "Getting data for run " run-id " with key-vals=" key-vals) ;; Not sure this is needed? |
︙ | |||
744 745 746 747 748 749 750 751 752 753 754 755 756 757 | 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 | + + | (take-right (dboard:tabdat-allruns tabdat) numruns) (pad-list (dboard:tabdat-allruns tabdat) numruns))) (lftcol (dboard:uidat-get-lftcol uidat)) (tableheader (dboard:uidat-get-header uidat)) (table (dboard:uidat-get-runsvec uidat)) (coln 0) (all-test-names (make-hash-table))) (debug:print-info 0 *default-log-port* "runs: " runs) ;; create a concise list of test names ;; (for-each (lambda (rundat) (if rundat (let* ((testdats (dboard:rundat-tests rundat)) |
︙ |