From: Alastair Bridgewater Date: Wed, 8 Sep 2010 01:12:16 +0000 (+0000) Subject: 1.0.42.35: tests: Update :fails-on clause for a test X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2e511bb9091cfbb1a683fd1b6b31a7b2ca28c013;p=sbcl.git 1.0.42.35: tests: Update :fails-on clause for a test * Test dynamic-extent.impure.lisp / BUG-586105 expects that both lists and vectors can be stack-allocated, but not all platforms support this. Fortunately, the platforms that do support it also have a feature conditional for it. Added a :fails-on clause to the test. --- diff --git a/tests/dynamic-extent.impure.lisp b/tests/dynamic-extent.impure.lisp index 98d9966..7f963aa 100644 --- a/tests/dynamic-extent.impure.lisp +++ b/tests/dynamic-extent.impure.lisp @@ -895,7 +895,8 @@ (cons #'bar (lambda () (declare (dynamic-extent #'bar)))))) 'sb-ext:compiler-note))) -(with-test (:name :bug-586105) +(with-test (:name :bug-586105 :fails-on '(not (and :stack-allocatable-vectors + :stack-allocatable-lists))) (flet ((test (x) (let ((vec (make-array 1 :initial-contents (list (list x))))) (declare (dynamic-extent vec)) diff --git a/version.lisp-expr b/version.lisp-expr index d7c84bb..2b1cc31 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.42.34" +"1.0.42.35"