-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcl-rocksdb.asd
28 lines (26 loc) · 875 Bytes
/
cl-rocksdb.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
;;;; cl-rocksdb.asd
(asdf:defsystem #:cl-rocksdb
:description "RocksDB binding for Common Lisp"
:author "Vee Satayamas <vsatayamas@gmail.com>"
:license "APACHE-2.0"
:version "0.0.1"
:serial t
:depends-on (#:cffi #:babel)
:components ((:file "package")
(:file "cl-rocksdb")))
(asdf:defsystem #:cl-rocksdb/test
:serial t
:depends-on (#:cl-rocksdb #:fiveam #:uiop #:static-vectors)
:components ((:module "t"
:components ((:file "package")
(:file "test"))))
:perform (test-op (o s)
(uiop:symbol-call :fiveam '#:run!
(uiop:find-symbol* 'low-level-suite
'cl-rocksdb/test))
(uiop:symbol-call :fiveam '#:run!
(uiop:find-symbol* 'lru-cache-option-suite
'cl-rocksdb/test))
(uiop:symbol-call :fiveam '#:run!
(uiop:find-symbol* 'property-suite
'cl-rocksdb/test))))