From: Kevin M. Rosenberg Date: Mon, 5 May 2003 20:35:23 +0000 (+0000) Subject: r4814: Auto commit for Debian build X-Git-Tag: v1.96~231 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=606b476d83ebdc137aa32abd0b6c31ce8fa117de;hp=0fa8f28d8deecc9d2f42ab124826ba85040feefc r4814: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 05f0590..4ea7c77 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-kmrcl (1.39-1) unstable; urgency=low + + * Fix test suite + + -- Kevin M. Rosenberg Mon, 5 May 2003 14:35:03 -0600 + cl-kmrcl (1.38-1) unstable; urgency=low * New upstream diff --git a/tests.lisp b/tests.lisp index d5c079f..811af3e 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.6 2003/05/04 14:52:10 kevin Exp $ +;;;; $Id: tests.lisp,v 1.7 2003/05/05 20:35:23 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -46,13 +46,9 @@ (deftest str.17 (nstring-trim-last-character "ab") "a") (deftest str.18 (delimited-string-to-list "ab|cd|ef") '("ab" "cd" "ef")) -(deftest str.19 (ndelimited-string-to-list "ab|cd|ef") '("ab" "cd" "ef")) (deftest str.20 (delimited-string-to-list "") nil) -(deftest str.21 (ndelimited-string-to-list "") nil) (deftest str.22 (delimited-string-to-list "ab") '("ab")) -(deftest str.23 (ndelimited-string-to-list "ab") '("ab")) (deftest str.24 (delimited-string-to-list "ab|") '("ab" "")) -(deftest str.25 (ndelimited-string-to-list "ab|") '("ab" "")) (eval-when (:compile-toplevel :load-toplevel :execute) (when (find-package '#:kmr-mop)