Skip to content
Snippets Groups Projects
Commit 4c36b6fb authored by Kevin M. Rosenberg's avatar Kevin M. Rosenberg
Browse files

r5553: *** empty log message ***

parent a4e59508
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id: base64.asd,v 1.21 2003/06/12 14:05:11 kevin Exp $
;;;; $Id: base64.asd,v 1.22 2003/08/24 20:38:08 kevin Exp $
;;;; *************************************************************************
(in-package #:cl-user)
......@@ -30,10 +30,19 @@
((:file "package")
(:file "encode" :depends-on ("package"))
(:file "decode" :depends-on ("package"))
(:file "base64-tests" :depends-on ("encode" "decode"))
))
(defmethod perform ((o test-op) (c (eql (find-system 'base64))))
(operate 'load-op 'base64-tests)
(operate 'test-op 'base64-tests :force t))
(defsystem base64-tests
:depends-on (base64)
:components
((:file "tests")))
(defmethod perform ((o test-op) (c (eql (find-system 'base64-tests))))
(operate 'load-op 'base64-tests)
(or (funcall (intern (symbol-name '#:test-base64)
(find-package 'base64-test)))
(error "test-op failed")))
cl-base64 (3.3-1) unstable; urgency=low
* Rework test loading
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 24 Aug 2003 13:40:03 -0600
cl-base64 (3.2.1-1) unstable; urgency=low
* New upstream
......
......@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Jan 2003
;;;;
;;;; $Id: base64-tests.lisp,v 1.14 2003/06/12 14:05:11 kevin Exp $
;;;; $Id: tests.lisp,v 1.1 2003/08/24 20:38:08 kevin Exp $
;;;; *************************************************************************
(in-package #:cl-user)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment