32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
(declare (uses items))
(declare (uses runconfig))
(include "common_records.scm")
(include "key_records.scm")
(include "db_records.scm")
(include "run_records.scm")
(include "test_records.scm")
;; Populate the links tree with index.html files
;;
;; - start from most recent tests and work towards oldest -OR-
;; start from deepest hierarchy and work way up
;; - look up tests in megatest.db
;; - cross-reference the tests to stats.db
|
<
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
(declare (uses items))
(declare (uses runconfig))
(include "common_records.scm")
(include "key_records.scm")
(include "db_records.scm")
(include "run_records.scm")
;; Populate the links tree with index.html files
;;
;; - start from most recent tests and work towards oldest -OR-
;; start from deepest hierarchy and work way up
;; - look up tests in megatest.db
;; - cross-reference the tests to stats.db
|