X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-tests.asd;h=afceb8c726a18ea03fafbdacd531ba19a458a83a;hp=de6808828f9c6487414ac836971b9d49ab68c09f;hb=c4ffac239e4910bff542dadf3212ad95803af64e;hpb=2dfae2a07c7ee0826a17edde3c23ef493b18bdb5 diff --git a/clsql-tests.asd b/clsql-tests.asd index de68088..afceb8c 100644 --- a/clsql-tests.asd +++ b/clsql-tests.asd @@ -1,40 +1,38 @@ -;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: clsql-tests.asd -;;;; Purpose: ASDF system definitionf for clsql testing package -;;;; Author: Kevin M. Rosenberg -;;;; Date Started: Apr 2003 +;;;; File: clsql-tests.asd +;;;; Author: Marcus Pearce +;;;; Created: 30/03/2004 +;;;; Updated: <04/04/2004 12:34:41 marcusp> ;;;; -;;;; $Id: clsql-tests.asd,v 1.4 2003/07/20 18:31:22 kevin Exp $ +;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $ +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* +;;;; ====================================================================== (in-package #:cl-user) -(defpackage #:clsql-tests-system (:use #:asdf #:cl)) -(in-package #:clsql-tests-system) - -(defsystem clsql-tests - :name "clsql-tests" - :author "Kevin Rosenberg " - :maintainer "Kevin M. Rosenberg " - :licence "Lessor Lisp General Public License" - :description "Testing suite for CLSQL" - - :depends-on (:clsql :clsql-mysql :clsql-postgresql :clsql-postgresql-socket - #+allegro :clsql-aodbc) - :components - ((:module tests - :components - ((:file "rt") - (:file "ptester") - (:file "package" :depends-on ("rt")) -;; (:file "tables" :depends-on ("package"))) - (:file "tests" :depends-on ("package" "ptester"))) - ))) - -(defmethod perform ((o test-op) (c (eql (find-system 'clsql-tests)))) - (or (funcall (intern (symbol-name '#:do-tests) - (find-package '#:regression-test))) - (error "test-op failed"))) +(asdf:defsystem clsql-tests + :name "CLSQL Tests" + :author "" + :maintainer "" + :version "" + :licence "" + :description "A regression test suite for CLSQL." + :depends-on (clsql rt) + :components + ((:module tests + :serial t + :components ((:file "package") + (:file "test-init") + (:file "test-connection") + (:file "test-fddl") + (:file "test-fdml") + (:file "test-ooddl") + (:file "test-oodml") + (:file "test-syntax")))))