X-Git-Url: http://git.kpe.io/?p=ptester.git;a=blobdiff_plain;f=tester.asd;fp=tester.asd;h=6bf07e95fc1a368dc3257992d171cc56cd01fa3f;hp=0000000000000000000000000000000000000000;hb=cfec80591f62db0b3996b83cfb2cfbd3b3cc4326;hpb=0303c869304dbb69de3d3b6e173874d0b9a9a0f1 diff --git a/tester.asd b/tester.asd new file mode 100644 index 0000000..6bf07e9 --- /dev/null +++ b/tester.asd @@ -0,0 +1,40 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: tester.asd +;;;; Purpose: ASDF definition file for Tester +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: tester.asd,v 1.1 2003/01/10 05:17:27 kevin Exp $ +;;;; +;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; cl-tester users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU Lesser General Public License +;;;; (http://www.gnu.org/licenses/lgpl.html) +;;;; ************************************************************************* + +(in-package :asdf) + +#+allegro (require 'tester) + +(defsystem :tester + :name "cl-tester" + :author "Kevin Layer, Franz, Inc" + :version "2.2.12.2.6.1" + :maintainer "Kevin M. Rosenberg " + :licence "GNU Lesser General Public License" + :description "Franz's Test Harness Package" + :long-description "Tester provides an framework for creating automated testing progams." + + :perform (load-op :after (op tester) + (pushnew :tester cl:*features*)) + + :components + ( + #-allegro (:file "tester") + )) + +