From f67ad655ef7a17b9c852879050eece54f9ede1f2 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 5 Dec 2008 13:16:21 +0000 Subject: [PATCH] 1.0.23.24: fix bad test for ARRAY-STORAGE-VECTOR * How many problems can a trivial change have? Moral: don't do manual cherry-picking. It always goes wrong. --- tests/array.pure.lisp | 6 +++--- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 21088fc69..b07f5e35a 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -246,6 +246,6 @@ (assert (eq 'fixnum (array-element-type (sb-ext:array-storage-vector (make-array '(3 4 5) :element-type 'fixnum))))) - (assert (equalp (vector 1 2 3 4 0) - (sb-ext:array-storage-vector - (make-array 5 :fill-pointer 4)))))) + (assert (not (array-has-fill-pointer-p + (sb-ext::array-storage-vector + (make-array 5 :fill-pointer 4))))))) diff --git a/version.lisp-expr b/version.lisp-expr index cf8b9089f..08fe8b7d4 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.23.23" +"1.0.23.24" -- 2.11.4.GIT