-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathlem-tests.asd
More file actions
79 lines (79 loc) · 3.03 KB
/
lem-tests.asd
File metadata and controls
79 lines (79 loc) · 3.03 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(defsystem "lem-tests"
:depends-on ("lem/core"
"lem-fake-interface"
"lem-lisp-syntax"
"lem-lisp-mode"
"lem-legit"
#+sbcl "lem-mcp-server"
#+sbcl "lem-language-server"
#+sbcl "lem-language-client"
#+sbcl "lem-lsp-mode"
"lem-tree-sitter"
"lem-yaml-mode"
"lem-wat-mode"
"lem-nix-mode"
"lem-clojure-mode"
"cl-ansi-text"
"trivial-package-local-nicknames"
"rove"
"yason")
:pathname "tests"
:components ((:file "utilities")
(:module "buffer"
:components ((:file "internal")))
(:module "common"
:components ((:file "ring")
(:file "killring")
(:file "history")
(:file "timer")))
#+sbcl
(:module "language-server"
:components ((:file "utils")
(:file "test-utils")
(:file "micros-tests")
(:file "tests")
(:file "language-features-tests")))
#+sbcl
(:module "lsp-mode"
:components ((:file "mock-client")
(:file "test-utils")
(:file "tests")
(:file "integration-tests")))
#+sbcl
(:module "mcp-server"
:components ((:file "utils")
(:file "integration-tests")
(:file "edge-case-tests")
(:file "display-input-tests")))
(:module "lisp-syntax"
:components ((:file "indent-test")
(:file "defstruct-to-defclass")))
(:module "lisp-mode"
:components ((:file "package-inferred-system")
(:file "file-conversion")))
(:module "tree-sitter"
:components ((:file "main")))
(:file "killring")
(:file "string-width-utils")
(:file "syntax-test")
(:file "syntax-scanner")
(:file "buffer-list-test")
(:file "popup-window")
(:file "prompt")
(:file "cursors")
(:file "isearch")
(:file "self-insert-command")
(:file "interp")
(:file "input")
(:file "file")
(:file "scala-mode")
(:file "wat-mode")
(:file "nix-mode")
(:file "clojure-mode")
(:file "completion")
(:file "command-line-arguments")
(:file "window")
(:file "legit")
(:file "filer"))
:perform (test-op (o c)
(symbol-call :rove :run c)))