X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-tests.asd;h=7a7d6d9b6da392e320c9f469a68ebba098e334cb;hb=5691bb90517d7c565a141d131da76c3de1f8d566;hp=afceb8c726a18ea03fafbdacd531ba19a458a83a;hpb=c4ffac239e4910bff542dadf3212ad95803af64e;p=clsql.git diff --git a/clsql-tests.asd b/clsql-tests.asd index afceb8c..7a7d6d9 100644 --- a/clsql-tests.asd +++ b/clsql-tests.asd @@ -2,12 +2,12 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; File: clsql-tests.asd -;;;; Author: Marcus Pearce -;;;; Created: 30/03/2004 -;;;; Updated: <04/04/2004 12:34:41 marcusp> +;;;; File: clsql-tests.asd +;;;; Authors: Marcus Pearce and Kevin Rosenberg +;;;; Created: 30/03/2004 +;;;; Updated: $Id$ ;;;; -;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $ +;;;; $Id$ ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License @@ -16,8 +16,10 @@ ;;;; ====================================================================== (in-package #:cl-user) +(defpackage #:clsql-classic-tests-system (:use #:asdf #:cl)) +(in-package #:clsql-classic-tests-system) -(asdf:defsystem clsql-tests +(defsystem clsql-tests :name "CLSQL Tests" :author "" :maintainer "" @@ -36,3 +38,10 @@ (:file "test-ooddl") (:file "test-oodml") (:file "test-syntax"))))) + +(defmethod perform ((o test-op) (c (eql (find-system 'clsql-tests)))) + (error "Automated performing of test-op is not yet supported.") + #+ignore + (unless (funcall (intern (symbol-name '#:run-tests) + (find-package '#:clsql-tests))) + (error "test-op failed")))