X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi-tests.asd;fp=uffi-tests.asd;h=d3c9cccc1e9605658469de6bbe21eb85f6c2503b;hb=0bf8fb658b7a8181a42792f7cb0de08b91f7a8d3;hp=37a3e9f69e63b860a68e5d56029f9d93351ea1d9;hpb=6d6754210412035b80b09d7fccaea6c620afd0cf;p=uffi.git diff --git a/uffi-tests.asd b/uffi-tests.asd index 37a3e9f..d3c9ccc 100644 --- a/uffi-tests.asd +++ b/uffi-tests.asd @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: uffi-tests.asd,v 1.1 2003/04/29 12:09:36 kevin Exp $ +;;;; $Id: uffi-tests.asd,v 1.2 2003/04/29 12:57:10 kevin Exp $ ;;;; ************************************************************************* (defpackage #:uffi-tests-system @@ -15,11 +15,17 @@ (in-package #:uffi-tests-system) (defsystem uffi-tests - :depends-on (:rt :uffi) - :components ((:file "tests"))) + :depends-on (:uffi) + :components + ((:module tests + :components + ((:file "rt") + (:file "package" :depends-on ("rt")) + (:file "strtol" :depends-on ("package")) + (:file "atoifl" :depends-on ("package")) + )))) (defmethod perform ((o test-op) (c (eql (find-system :uffi-tests)))) (or (funcall (intern (symbol-name '#:do-tests) (find-package '#:regression-test))) (error "test-op failed"))) -