Overview
Comment: | wip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-fixes |
Files: | files | file ages | folders |
SHA1: |
7794d480b4de6377d622842ab1bf8c96 |
User & Date: | matt on 2020-03-02 14:21:03 |
Other Links: | branch diff | manifest | tags |
Context
2020-03-02
| ||
22:43 | fixed get-tests-for-run-state-status check-in: dc5b909cd0 user: matt tags: v1.65-fixes | |
14:21 | wip check-in: 7794d480b4 user: matt tags: v1.65-fixes | |
06:00 | Syncd with v1.65 check-in: 6073f070bd user: mrwellan tags: v1.65-fixes | |
Changes
Modified dashboard.scm from [2647d55904] to [85d8ca8259].
︙ | |||
2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 | 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 | + | ;; update runs id => runrec ;; update targ-runid target/runname => run-id (for-each (lambda (runrec) (let* ((run-id (simple-run-id runrec)) (full-targ-runname (conc (simple-run-target runrec) "/" (simple-run-runname runrec)))) (debug:print 0 *default-log-port* "Update run " run-id) (sparse-vector-set! (dboard:rdat-runs rdat) run-id runrec) (hash-table-set! (dboard:rdat-targ-runid rdat) full-targ-runname run-id) )) data) numruns)) ;; NOTE: runnum is NOT the run-id, it is a pointer into the runsbynum vector |
︙ | |||
2669 2670 2671 2672 2673 2674 2675 | 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 | + - + - + + + + + + + + + + - - - - - - + + + + + + + - - - - | ;; (itempath-sql-filt (dboard:rdat-itempath-sql-filt rdat)) (test-state-sql-filt (dboard:rdat-test-state-sql-filt rdat)) ;; not used yet (test-status-sql-filt (dboard:rdat-test-status-sql-filt rdat)) ;; not used yet (tests (rmt:get-tests-for-run-state-status run-id testname-sql-filt last-update ;; last-update ))) (sparse-vector-set! (dboard:rdat-last-updates rdat) run-id (- curr-time 1)) |
︙ |