From: Kevin M. Rosenberg Date: Tue, 15 Apr 2003 15:53:38 +0000 (+0000) Subject: r4485: Auto commit for Debian build X-Git-Tag: v3.3.2~36 X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=commitdiff_plain;h=28e856fea59489fd4ec5d08c073d0a643313e622 r4485: Auto commit for Debian build --- diff --git a/base64-tests.lisp b/base64-tests.lisp index fc576bc..f12a8ff 100644 --- a/base64-tests.lisp +++ b/base64-tests.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Jan 2003 ;;;; -;;;; $Id: base64-tests.lisp,v 1.3 2003/04/15 15:51:03 kevin Exp $ +;;;; $Id: base64-tests.lisp,v 1.4 2003/04/15 15:53:38 kevin Exp $ ;;;; ************************************************************************* (in-package :cl-user) @@ -59,7 +59,8 @@ (if (zerop columns) nil columns))) - :test #'string=)))))) + :test #'string=))))) + t) (defun time-routines () @@ -73,4 +74,4 @@ (time-iterations n (excl:usb8-array-to-base64-string usb8)))) -(test-base64) +;;(test-base64) diff --git a/base64.asd b/base64.asd index 1f0bc03..e4a26aa 100644 --- a/base64.asd +++ b/base64.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: base64.asd,v 1.9 2003/04/15 15:51:03 kevin Exp $ +;;;; $Id: base64.asd,v 1.10 2003/04/15 15:53:38 kevin Exp $ ;;;; ************************************************************************* (in-package :asdf) @@ -35,8 +35,9 @@ ((:file "package") (:file "encode" :depends-on ("package")) (:file "decode" :depends-on ("package")) + (:file "tests-base64" :depends-on ("encode" "decode")) )) (defmethod perform ((o test-op) (c (eql (find-system :base64)))) - (or (load "base64-tests.lisp") + (or (test-base64) (error "test-op failed")))