blob: f9b27542d239998bb3bcf1c85a7e2e253c3bfa04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;;;; SYSTEM.asd
;;;; System definitions for SYSTEM
;;;; AUTHOR:
;; ---------------------------------------------------------------------
;;; Main System Definition
;; ---------------------------------------------------------------------
(asdf:defsystem "SYSTEM"
:build-operation program-op
:components ((:file "src/SYSTEM"))
:in-order-to ((asdf:test-op (asdf:test-op "SYSTEM/test"))))
;; ---------------------------------------------------------------------
;;; Test Suite System Definition
;; ---------------------------------------------------------------------
(asdf:defsystem "SYSTEM/test"
:depends-on ("SYSTEM" "fiveam")
:components ((:file "test/SYSTEM-test"))
:perform (asdf:test-op (o c) (uiop:symbol-call :fiveam '#:run-all-tests)))
|