r10534: remote warnings, add units capability to make-output-format
[cl-photo.git] / cl-photo-tests.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          cl-photo-tests.asd
6 ;;;; Purpose:       ASDF system definitionf for cl-photo testing package
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2003
9 ;;;;
10 ;;;; $Id$
11 ;;;; *************************************************************************
12
13 (defpackage #:cl-photo-tests-system
14   (:use #:asdf #:cl))
15 (in-package #:cl-photo-tests-system)
16
17 (operate 'load-op 'cl-photo)
18
19
20 (defsystem cl-photo-tests
21     :depends-on (cl-photo rt)
22     :components ((:file "tests")))
23
24 (defmethod perform ((o test-op) (c (eql (find-system :cl-photo-tests))))
25   (operate 'load-op 'cl-photo)
26   (or (funcall (intern (symbol-name '#:do-tests)
27                        (find-package '#:regression-test)))
28       (error "test-op failed")))