15
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
|
15
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
51
52
53
|
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
|
;;
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(declare (unit testsmod))
(declare (uses commonmod))
(declare (uses mtargs))
(declare (uses servermod))
(declare (uses mtconfigf))
(declare (uses itemsmod))
(declare (uses dbmod))
(module testsmod
*
(import scheme chicken data-structures extras files)
(import (prefix sqlite3 sqlite3:) posix typed-records srfi-18 srfi-69
(use (prefix sqlite3 sqlite3:) posix typed-records srfi-18 srfi-69
format ports srfi-1 matchable
directory-utils
regex srfi-13
commonmod
servermod
itemsmod
dbmod
(prefix mtconfigf configf:)
(prefix mtargs args:))
regex srfi-13)
(import commonmod)
(import servermod)
(import itemsmod)
(import dbmod)
(import (prefix mtconfigf configf:))
(import (prefix mtargs args:))
(include "run_records.scm")
(include "test_records.scm")
(include "db_records.scm")
(define *java-script-lib* #f)
|