Megatest

Check-in [2f7cc277f5]
Login
Overview
Comment:prefix debugprint module calls to prevent collision

Not sure this branch is useful. Rebased it to assess but many conflicts due to moving functions around.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.7001-rebase-wip | v1.7001-multi-db-rb01
Files: files | file ages | folders
SHA1: 2f7cc277f5b91bf5f3e984b4e6159feb701d9d18
User & Date: matt on 2022-04-21 19:12:40
Original Comment: prefix debugprint module calls to prevent collision
Other Links: branch diff | manifest | tags
Context
2022-04-21
19:36
Cherrypicked bd65 and a82e check-in: 0b155d7512 user: matt tags: v1.7001-rebase-wip, v1.7001-multi-db-rb01
19:12
prefix debugprint module calls to prevent collision

Not sure this branch is useful. Rebased it to assess but many conflicts due to moving functions around. check-in: 2f7cc277f5 user: matt tags: v1.7001-rebase-wip, v1.7001-multi-db-rb01

19:12
re-ordered imports as needed check-in: e646312f1b user: matt tags: v1.7001-rebase-wip, v1.7001-multi-db-rb01
Changes

Modified megatest.scm from [3350327483] to [bf3d77e132].

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(declare (uses dbfile.import))
;; (declare (uses mtargs))
;; (declare (uses mtargs.import))

;; (declare (uses ftail))
;; (import ftail)

(import mtargs
	commonmod
	debugprint
	dbmod
	dbfile)

(define *db* #f) ;; this is only for the repl, do not use in general!!!!

(include "common_records.scm")
(include "key_records.scm")







|

|







54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(declare (uses dbfile.import))
;; (declare (uses mtargs))
;; (declare (uses mtargs.import))

;; (declare (uses ftail))
;; (import ftail)

(import (prefix mtargs mod:)
	commonmod
	(prefix debugprint mod:)
	dbmod
	dbfile)

(define *db* #f) ;; this is only for the repl, do not use in general!!!!

(include "common_records.scm")
(include "key_records.scm")