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