mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Disable failing tests on mark-region-gc
This commit is contained in:
parent
684802b892
commit
899dac7205
|
|
@ -2,7 +2,8 @@
|
|||
;;; potential pointers. Also make sure it sees the SYMBOL-INFO slot.
|
||||
(defstruct afoo (slot nil :type sb-ext:word))
|
||||
(defvar *afoo* (make-afoo :slot (sb-kernel:get-lisp-obj-address '*posix-argv*)))
|
||||
(with-test (:name :map-referencing-objs)
|
||||
(with-test (:name :map-referencing-objs
|
||||
:broken-on :mark-region-gc)
|
||||
(sb-vm::map-referencing-objects (lambda (x) (assert (not (typep x 'afoo))))
|
||||
:dynamic '*posix-argv*)
|
||||
(let ((v (sb-kernel:symbol-%info 'satisfies)) referers)
|
||||
|
|
|
|||
|
|
@ -305,7 +305,8 @@
|
|||
(loop for d from c below size do
|
||||
(test a b c d op deriver))))))))))
|
||||
|
||||
(with-test (:name (:type-derivation :logical-operations :scaling) :slow t)
|
||||
(with-test (:name (:type-derivation :logical-operations :scaling
|
||||
:broken-on :mark-region-gc) :slow t)
|
||||
(let ((type-x1 (sb-c::specifier-type `(integer ,(expt 2 10000)
|
||||
,(expt 2 10000))))
|
||||
(type-x2 (sb-c::specifier-type `(integer ,(expt 2 100000)
|
||||
|
|
|
|||
Loading…
Reference in a new issue