The branch "master" has been updated in SBCL:
via 97527a422a7ca9ad37332af9a5a33d710a20dcda (commit)
from 98cc9eff5b1ba1bbfb65bcfddcbd00cb08edf8f1 (commit)
- Log -----------------------------------------------------------------
commit 97527a422a7ca9ad37332af9a5a33d710a20dcda
Author: David Lichteblau <david@...>
Date: Wed Jul 18 19:42:13 2012 +0200
Temporarily disable problematic exhaust tests on Windows
---
tests/exhaust.impure.lisp | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/tests/exhaust.impure.lisp b/tests/exhaust.impure.lisp
index e8957a0..7bf0fdc 100644
--- a/tests/exhaust.impure.lisp
+++ b/tests/exhaust.impure.lisp
@@ -47,7 +47,9 @@
;;; Check that non-local control transfers restore the stack
;;; exhaustion checking after unwinding -- and that previous test
;;; didn't break it.
-(with-test (:name (:exhaust :non-local-control) :broken-on '(and :sunos :x86-64))
+(with-test (:name (:exhaust :non-local-control)
+ :broken-on '(and :sunos :x86-64)
+ :skipped-on :win32)
(let ((exhaust-count 0)
(recurse-count 0))
(tagbody
@@ -64,7 +66,9 @@
;;; Check that we can safely use user-provided restarts to
;;; unwind.
-(with-test (:name (:exhaust :restarts) :broken-on '(and :sunos :x86-64))
+(with-test (:name (:exhaust :restarts)
+ :broken-on '(and :sunos :x86-64)
+ :skipped-on :win32)
(let ((exhaust-count 0)
(recurse-count 0))
(block nil
@@ -79,7 +83,7 @@
(recurse)))))
(assert (= exhaust-count recurse-count *count*))))
-(with-test (:name (:exhaust :binding-stack))
+(with-test (:name (:exhaust :binding-stack) :skipped-on :win32)
(let ((ok nil)
(symbols (loop repeat 1024 collect (gensym)))
(values (loop repeat 1024 collect nil)))
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL
|