r10469: add number-within-percentage
[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$
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
20     ((:file "tests")))
21
22 (defmethod perform ((o test-op) (c (eql (find-system 'kmrcl-tests))))
23   (or (funcall (intern (symbol-name '#:do-tests)
24                        (find-package '#:regression-test)))
25       (error "test-op failed")))
26