X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl-tests.asd;h=331ee74d5a2e0220cea990acd045a91414a9eec3;hp=2999c2664420f23527f9030bdd606b0a327d79dc;hb=HEAD;hpb=4a5b626f01db51b02f969adb33ddad6aa9ee303a diff --git a/kmrcl-tests.asd b/kmrcl-tests.asd deleted file mode 100644 index 2999c26..0000000 --- a/kmrcl-tests.asd +++ /dev/null @@ -1,26 +0,0 @@ -;;;; -*- 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.3 2003/06/06 21:59:29 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"))) -