r4492: Auto commit for Debian build
[cl-base64.git] / base64-tests.lisp
index 3b7ec4a22e1b090e1a58977b638c7bd170a46265..7b8a14a0924db1f7d59f4e0312f4120125f80fe5 100644 (file)
@@ -7,17 +7,15 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Jan 2003
 ;;;;
-;;;; $Id: base64-tests.lisp,v 1.1 2003/04/15 15:34:43 kevin Exp $
+;;;; $Id: base64-tests.lisp,v 1.6 2003/04/15 16:02:21 kevin Exp $
 ;;;; *************************************************************************
 
 (in-package :cl-user)
 
-(defpackage #:base64-test
-  (:use #:cl #:kmrcl #:base64 #:util.test))
-
-(in-package #:base64-test)
+(in-package #:base64)
 
 (defun test-base64 ()
+  (setq *break-on-test-failures* t) 
   (with-tests (:name "cl-base64 tests")
     (do* ((length 0 (+ 3 length))
          (string (make-string length) (make-string length))
@@ -58,7 +56,8 @@
                     (if (zerop columns)
                         nil
                         columns)))
-           :test #'string=))))))
+           :test #'string=)))))
+  t)
 
 
 (defun time-routines ()
@@ -71,5 +70,5 @@
     (time-iterations n (string-to-base64-string str))
     (time-iterations n (excl:usb8-array-to-base64-string usb8))))
 
-      
-;;#+run-test (test-base64)
+(export 'test-base64)      
+;;(test-base64)