r4865: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 7 May 2003 16:03:11 +0000 (16:03 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 7 May 2003 16:03:11 +0000 (16:03 +0000)
debian/changelog
tests.lisp

index 5ef88d1da0c1b61d78c59b803903dc4fd2d7aa13..9f86319c047855305f2594e8ab8f2b10306e362c 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.41-1) unstable; urgency=low
+
+  * Fix tests.lisp
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  7 May 2003 10:02:40 -0600
+
 cl-kmrcl (1.40-1) unstable; urgency=low
 
   * New upstream
index 6e4e64d74412ddffc7480505a9cc8e9342c72898..202145b2ec9a14990c581b222ad4ec8573e4a081 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
-;;;; $Id: tests.lisp,v 1.9 2003/05/06 01:43:14 kevin Exp $
+;;;; $Id: tests.lisp,v 1.10 2003/05/07 16:03:11 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;;
 (deftest str.24 (delimited-string-to-list "ab|" #\|) ("ab" ""))
 (deftest str.25 (delimited-string-to-list "ab|" #\| t) ("ab"))
 
-(deftest ap1.1 (append1 '((a b) (c d)) (a b c d)))
-(deftest ap1.2 (append1 nil) nil)
-(deftest ap1.3 (append1 '((a b))) (a b))
-(deftest ap1.4 (append1 '((a))) (a))
-(deftest ap1.5 (append1 '((a) (b) (c d (e f g)))) (a b c d (e f g)))
+(deftest ap1.1 (append-sublists '((a b) (c d)) (a b c d)))
+(deftest ap1.2 (append-sublists nil) nil)
+(deftest ap1.3 (append-sublists '((a b))) (a b))
+(deftest ap1.4 (append-sublists '((a))) (a))
+(deftest ap1.5 (append-sublists '((a) (b) (c d (e f g)))) (a b c d (e f g)))
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (when (find-package '#:kmr-mop)