-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathload-tests.lsp
More file actions
30 lines (26 loc) · 884 Bytes
/
load-tests.lsp
File metadata and controls
30 lines (26 loc) · 884 Bytes
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
;;; Load test files
(load "tests/symbols/load.lsp")
(load "tests/eval-and-compile/load.lsp")
(load "tests/data-and-control-flow/load.lsp")
(load "tests/iteration/load.lsp")
(load "tests/conditions/load.lsp")
(load "tests/cons/load.lsp")
(load "tests/strings/load.lsp")
(load "tests/characters/load.lsp")
(load "tests/pathnames/load.lsp")
(load "tests/files/load.lsp")
(load "tests/hash-tables/load.lsp")
(load "tests/arrays/load.lsp")
(load "tests/environment/load.lsp")
(load "tests/misc/load.lsp")
(load "tests/numbers/load.lsp")
(load "tests/printer/load.lsp")
(load "tests/reader/load.lsp")
(load "tests/packages/load.lsp")
(load "tests/streams/load.lsp")
(load "tests/sequences/load.lsp")
(load "tests/system-construction/load.lsp")
(load "tests/structures/load.lsp")
;;; Skip unsupported tests
;; (load "tests/types-and-classes/load.lsp")
;; (load "tests/objects/load.lsp")