blob: 07bdd5bcd284d92eb9e981e302bd7f805a1cce68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(defmacro test-module (name)
`(progn
(princ (format "[TEST] %s\n" ,name))
(load (format "%s.lisp" ,name))
(princ (format "[PASS] %s\n" ,name))))
(test-module "arithmetic")
(test-module "control-flow")
(test-module "lambda")
(test-module "comment")
(test-module "macro")
(test-module "let-binding")
(exit)
|