blob: 58dcc27569445fb8cfe3e13943c9b5736a2678cf (
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 quasi quine seq stslot const"))
(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"))
|