Add debian source format
[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
11 (defpackage #:umlisp-tests-system
12   (:use #:asdf #:cl))
13 (in-package #:umlisp-tests-system)
14
15 (defsystem umlisp-tests
16     :depends-on (:rt :umlisp)
17     :components
18     ((:module tests
19               :serial t
20               :components
21               ((:file "package")
22                (:file "init")
23                (:file "basic")
24                (:file "parse")))))
25
26 (defmethod perform ((o test-op) (c (eql (find-system 'umlisp-tests))))
27   (or (funcall (intern (symbol-name '#:run-tests)
28                        (find-package '#:umlisp-tests)))
29       (error "test-op failed")))