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