r4814: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 5 May 2003 20:35:23 +0000 (20:35 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 5 May 2003 20:35:23 +0000 (20:35 +0000)
debian/changelog
tests.lisp

index 05f05904d713120ba6494f16b1b84cff58426e0d..4ea7c77c7e2cd52f91317f96b7657c7763f61862 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.39-1) unstable; urgency=low
+
+  * Fix test suite
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  5 May 2003 14:35:03 -0600
+
 cl-kmrcl (1.38-1) unstable; urgency=low
 
   * New upstream
index d5c079f7692867c1b292b54b55cc10c7ef68442a..811af3e17c7dea1f89749eb529584497db2b873e 100644 (file)
@@ -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
 ;;;;
 (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)