X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml-tests.asd;fp=lml-tests.asd;h=432c49d5399277885e2444d694a3416bbf6abc62;hb=f31c5912d3e308b77a0b6790298ed13d334377c9;hp=0000000000000000000000000000000000000000;hpb=5151ac10e8472126199e05ff8e5ab382ecba3c68;p=lml.git diff --git a/lml-tests.asd b/lml-tests.asd new file mode 100644 index 0000000..432c49d --- /dev/null +++ b/lml-tests.asd @@ -0,0 +1,26 @@ +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: lml-tests.asd +;;;; Purpose: ASDF system definitionf for lml testing package +;;;; Author: Kevin M. Rosenberg +;;;; Date Started: Apr 2003 +;;;; +;;;; $Id: lml-tests.asd,v 1.1 2003/06/07 02:26:07 kevin Exp $ +;;;; ************************************************************************* + +(defpackage #:lml-tests-system + (:use #:asdf #:cl)) +(in-package #:lml-tests-system) + +(defsystem lml-tests + :depends-on (:rt :lml) + :components + ((:file "tests"))) + +(defmethod perform ((o test-op) (c (eql (find-system 'lml-tests)))) + (or (funcall (intern (symbol-name '#:do-tests) + (find-package '#:regression-test))) + (error "test-op failed"))) +