From c0edd3a5a45ff0159ea308aa8a68c6ac0df0e0de Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 7 Apr 2010 14:56:16 +0000 Subject: [PATCH] 1.0.37.51: make SB-INTROSPECT build on PPC/GENCGC, hopefully ...by skipping the test which is too hard on the flaky combination. I'm really no enthused about purporting to support GENCGC on PPC, when we know it's flaky, but we don't have resources to fix it. :/ --- NEWS | 1 + contrib/sb-introspect/test-driver.lisp | 3 +++ version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 9352a0d01..c90268d6f 100644 --- a/NEWS +++ b/NEWS @@ -58,6 +58,7 @@ changes relative to sbcl-1.0.37: block FIND-SYMBOL and FIND-PACKAGE in other threads. (lp#511072) * bug fix: SB-POSIX build was broken when SBCL was compiled without the :SB-DOC feature. (lp#552564) + * bug fix: SB-INTROSPECT build issues on GENGC/PPC. (lp#490490) changes in sbcl-1.0.37 relative to sbcl-1.0.36: * enhancement: Backtrace from THROW to uncaught tag on x86oids now shows diff --git a/contrib/sb-introspect/test-driver.lisp b/contrib/sb-introspect/test-driver.lisp index 509794959..f40e99b5c 100644 --- a/contrib/sb-introspect/test-driver.lisp +++ b/contrib/sb-introspect/test-driver.lisp @@ -284,6 +284,9 @@ (tai 42 :immediate nil) t) +;;; Skip the whole damn test on GENCGC PPC -- the combination is just +;;; to flaky for this to make too much sense. +#-(and ppc gencgc) (deftest allocation-information.4 #+gencgc (tai #'cons :heap diff --git a/version.lisp-expr b/version.lisp-expr index 70a84a8da..f61f0e3e3 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.37.50" +"1.0.37.51" -- 2.11.4.GIT