r4484: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 15 Apr 2003 15:51:03 +0000 (15:51 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 15 Apr 2003 15:51:03 +0000 (15:51 +0000)
base64-tests.lisp
base64.asd

index 821165ed2b8a5eb05d91548d4f5e629fc4a5cd7f..fc576bcbf776c1d354bce21465be64fcc2973717 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Jan 2003
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Jan 2003
 ;;;;
-;;;; $Id: base64-tests.lisp,v 1.2 2003/04/15 15:44:07 kevin Exp $
+;;;; $Id: base64-tests.lisp,v 1.3 2003/04/15 15:51:03 kevin Exp $
 ;;;; *************************************************************************
 
 (in-package :cl-user)
 ;;;; *************************************************************************
 
 (in-package :cl-user)
@@ -73,4 +73,4 @@
     (time-iterations n (excl:usb8-array-to-base64-string usb8))))
 
       
     (time-iterations n (excl:usb8-array-to-base64-string usb8))))
 
       
-;;#+run-test (test-base64)
+(test-base64)
index a27bf2c444d7309c58803cc9240fbbd71a150a56..1f0bc03fb5e915d9a873368d5a26952185d36d93 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Dec 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Dec 2002
 ;;;;
-;;;; $Id: base64.asd,v 1.8 2003/04/15 15:44:07 kevin Exp $
+;;;; $Id: base64.asd,v 1.9 2003/04/15 15:51:03 kevin Exp $
 ;;;; *************************************************************************
 
 (in-package :asdf)
 ;;;; *************************************************************************
 
 (in-package :asdf)
@@ -29,7 +29,7 @@
            (pushnew :base64 cl:*features*))
 
   ;; depends-on only needed for test-op
            (pushnew :base64 cl:*features*))
 
   ;; depends-on only needed for test-op
-  :depends-on (:kmrcl #-allegro :tester) 
+  :depends-on (:kmrcl :tester) 
   
   :components
   ((:file "package")
   
   :components
   ((:file "package")
@@ -38,5 +38,5 @@
    ))
 
 (defmethod perform ((o test-op) (c (eql (find-system :base64))))
    ))
 
 (defmethod perform ((o test-op) (c (eql (find-system :base64))))
-  (or (load (compile-file "base64-tests.lisp"))
-         (error "test-op failed")))
+  (or (load "base64-tests.lisp")
+      (error "test-op failed")))