cleanup some compiler warnings
[lift.git] / lift-test.asd
blob31f528b0873c1640abec5a9e1db90e330b387773
1 (defpackage #:asdf-lift-test (:use #:asdf #:cl))
2 (in-package #:asdf-lift-test)
4 (defsystem lift-test
5   :author "Gary Warren King <gwking@metabang.com>"
6   :maintainer "Gary Warren King <gwking@metabang.com>"
7   :licence "MIT Style License; see file COPYING for details"
8   :description "Tests for LIsp Framework for Testing"
9   :components ((:module 
10                 "setup"
11                 :pathname "test/"
12                 :components ((:file "packages")
13                              (:file "lift-test"
14                                     :depends-on ("packages"))))
15                (:module 
16                 "test"
17                 :pathname "test/"
18                 :depends-on ("setup")
19                 :components ((:file "test-dynamic-variables")
20                              (:file "equality-tests")
21                              (:file "testsuite-expects")
22                              (:file "finding-tests")
23                              (:file "order-of-operations")
24                              (:file "test-config-files")
25                              (:file "test-maximum-problems")
26                              (:file "test-skipping")
27                              (:file "test-conditions")
28                              #+(or)
29                              (:file "test-prototypes"))))  
30   :depends-on (:lift))
32 (defmethod operation-done-p 
33            ((o test-op)
34             (c (eql (find-system 'lift-test))))
35   (values nil))