Overview
Comment: | dashboard now compiles |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6584-nanomsg |
Files: | files | file ages | folders |
SHA1: |
10dfb310f4901bd13fd23cb83337b871 |
User & Date: | matt on 2021-11-08 19:10:56 |
Other Links: | branch diff | manifest | tags |
Context
2021-11-08
| ||
19:18 | wip check-in: ac5d1bc5af user: matt tags: v1.6584-nanomsg | |
19:10 | dashboard now compiles check-in: 10dfb310f4 user: matt tags: v1.6584-nanomsg | |
18:52 | Ripped out gutils to find toplevel issue. I think I found the issue (dashboard-context-menu did not have import gutils), commiting then reverting gutils check-in: 7277f625b0 user: matt tags: v1.6584-nanomsg | |
Changes
Modified dashboard-context-menu.scm from [a09c15b6be] to [ed7177e42c].
︙ | ︙ | |||
66 67 68 69 70 71 72 | rmtmod ezstepsmod subrunmod debugprint configfmod testsmod dcommon | > | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | rmtmod ezstepsmod subrunmod debugprint configfmod testsmod dcommon gutils) ;; (include "common_records.scm") ;; (include "db_records.scm") ;; (include "run_records.scm") (define (dboard:launch-testpanel run-id test-id) (let* ((dboardexe (common:find-local-megatest "dashboard")) |
︙ | ︙ |
Modified dashboard.scm from [8f64b2b555] to [b4f6f8abed].
︙ | ︙ | |||
16 17 18 19 20 21 22 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== (declare (uses ducttape-lib)) | | | | | | | | | | | | | | | | | | | | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== (declare (uses ducttape-lib)) (declare (uses bigmod)) ;; (declare (uses gutils)) (declare (uses bigmod.import)) (declare (uses commonmod)) (declare (uses configfmod)) (declare (uses dashboard-context-menu)) (declare (uses dashboard-tests)) (declare (uses dbmod)) (declare (uses dcommon)) (declare (uses debugprint)) (declare (uses debugprint.import)) (declare (uses itemsmod)) (declare (uses launchmod)) (declare (uses mtargs)) (declare (uses mtmod)) (declare (uses mtver)) (declare (uses processmod)) (declare (uses runsmod)) (declare (uses subrunmod)) (declare (uses tree)) (declare (uses vgmod)) ;; (declare (uses dashboard-guimonitor)) ;; (declare (uses dashboard-main)) (import (prefix iup iup:)) (import canvas-draw) |
︙ | ︙ |