Megatest

Diff
Login

Differences From Artifact [e013f808fc]:

To Artifact [03376e240d]:


18
19
20
21
22
23
24

25
26
27
28
29
30
31
;;     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.

;;======================================================================

(declare (unit dbmod))
(declare (uses dbfile))
(declare (uses commonmod))

(declare (uses debugprint))

(module dbmod
	*
	
(import scheme)
	







>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;;     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.

;;======================================================================

(declare (unit dbmod))
(declare (uses dbfile))
(declare (uses commonmod))
(declare (uses configfmod))
(declare (uses debugprint))

(module dbmod
	*
	
(import scheme)
	
59
60
61
62
63
64
65

66
67
68
69
70
71
72
	matchable
	typed-records
	srfi-1
	srfi-18
	srfi-69

	commonmod

	dbfile
	debugprint)

;; NOTE: This returns only the name "1.db", "main.db", not the path
;;
(define (dbmod:run-id->dbfname run-id)
  (conc (dbfile:run-id->dbnum run-id)".db"))







>







60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
	matchable
	typed-records
	srfi-1
	srfi-18
	srfi-69

	commonmod
	configfmod
	dbfile
	debugprint)

;; NOTE: This returns only the name "1.db", "main.db", not the path
;;
(define (dbmod:run-id->dbfname run-id)
  (conc (dbfile:run-id->dbnum run-id)".db"))