~ubuntu-branches/ubuntu/feisty/cl-kmrcl/feisty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
;;;; -*- 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 7061 2003-09-07 06:34:45Z kevin $
;;;; *************************************************************************

(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")))