r4824: Auto commit for Debian build
[kmrcl.git] / kmrcl-tests.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          kmrcl-tests.asd
6 ;;;; Purpose:       ASDF system definitionf for kmrcl testing package
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2003
9 ;;;;
10 ;;;; $Id: kmrcl-tests.asd,v 1.1 2003/04/28 21:12:27 kevin Exp $
11 ;;;; *************************************************************************
12
13 (defpackage #:kmrcl-tests-system
14   (:use #:asdf #:cl))
15 (in-package #:kmrcl-tests-system)
16
17 (defsystem kmrcl-tests
18     :depends-on (:rt :kmrcl)
19     :components ((:file "tests")))
20
21 (defmethod perform ((o test-op) (c (eql (find-system :kmrcl-tests))))
22   (or (funcall (intern (symbol-name '#:do-tests)
23                        (find-package '#:regression-test)))
24       (error "test-op failed")))
25