blob: 9b22d92a5c4d17719096ec3091fe67a459ec6d4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(defparml %this-dir% (dir-name *load-path*))
(defparml %expected-file% `@(m^ #/.*[.]/ *load-path*)expected`)
(file-put-string %expected-file% "")
(each ((f '#"aseq ashwin circ cont defset except \
fini ifa man-or-boy oop-mi oop-seq oop \
parse syms quasi quine seq stslot const type"))
(let ((exf `@{%this-dir%}/@f.expected`))
(when (path-exists-p exf)
(file-append-string %expected-file%
(file-get-string exf))))
(compile-file `@f.tl` "temp.tlo")
(remove-path "temp.tlo"))
|