-
Notifications
You must be signed in to change notification settings - Fork 0
/
crylic-test.asd
39 lines (39 loc) · 2.01 KB
/
crylic-test.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
(asdf:defsystem :crylic-test
:description "Tests for Crylic"
:author "Joram Schrijver <i@joram.io>"
:serial t
:pathname "test"
:depends-on (:crylic :1am)
:components ((:file "framework")
(:module "examples"
:components ((:static-file "test.ini")
(:static-file "java.properties")
(:static-file "example.reg")
(:static-file "example.cf")
(:static-file "apache2.conf")
(:static-file "nginx.conf")
(:static-file "lighttpd.conf")
(:static-file "squid.conf")
(:static-file "Config.in.cache")
(:static-file "example.sh")
(:static-file "docker.docker")
(:static-file "test.tcsh")
(:static-file "test.ps1")
(:static-file "batchfile.bat")
(:static-file "boot-9.scm")
(:static-file "r6rs-comments.scm")
(:static-file "test.java")
(:static-file "Intro.java")
(:static-file "example.java")
(:static-file "badcase.java")
(:static-file "example.gs")
(:static-file "example.gst")
(:static-file "example.groovy")
(:static-file "test.groovy")
(:static-file "intro.ik")
(:static-file "clojure-weird-keywords.clj")
(:static-file "escape_semicolon.clj")
(:static-file "genclass.clj")
(:static-file "core.cljs"))))
:perform (test-op :after (op component)
(funcall (intern "RUN" :crylic-test/framework))))