r11624: improve find-uconso-code
[umlisp.git] / umlisp-tests.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          umlisp-tests.asd
6 ;;;; Purpose:       ASDF system definitionf for umlisp testing package
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2003
9 ;;;;
10 ;;;; $Id$
11 ;;;; *************************************************************************
12
13 (defpackage #:umlisp-tests-system
14   (:use #:asdf #:cl))
15 (in-package #:umlisp-tests-system)
16
17 (defsystem umlisp-tests
18     :depends-on (:rt :umlisp)
19     :components
20     ((:module tests
21               :serial t
22               :components
23               ((:file "package")
24                (:file "init")
25                (:file "basic")
26                (:file "parse")))))
27
28 (defmethod perform ((o test-op) (c (eql (find-system 'umlisp-tests))))
29   (or (funcall (intern (symbol-name '#:run-tests)
30                        (find-package '#:umlisp-tests)))
31       (error "test-op failed")))