forked from hraban/cl-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-graph-test.asd
44 lines (40 loc) · 1.21 KB
/
cl-graph-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
40
41
42
43
44
;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
(in-package :common-lisp-user)
(defpackage #:cl-graph-test-system (:use #:cl #:asdf))
(in-package #:cl-graph-test-system)
(defsystem cl-graph-test
:author "Gary Warren King <[email protected]>"
:maintainer "Gary Warren King <[email protected]>"
:licence "MIT Style License"
:description "Tests for CL-Graph"
:components ((:module
"setup"
:pathname "unit-tests/"
:components
((:file "package")
(:file "test-graph" :depends-on ("package"))
))
(:module
"unit-tests"
:pathname "unit-tests/"
:depends-on ("setup")
:components
((:file "test-graph-container")
(:file "test-connected-components")
;;(:file "test-graph-algorithms")
(:file "test-api")
))
(:module
"dev"
:components
((:static-file "notes.text"))))
:depends-on (:cl-graph :lift))
;; 2008-09-24 - I don't know if this will work or not
;; i.e., will it happen at the right time wrt everything else
#+asdf-system-connections
(asdf:defsystem-connection cl-graph-test-and-cl-mathstats
:requires (cl-graph moptilities)
:components ((:module
"unit-tests"
:components
((:file "test-graph-metrics")))))