From: Nikodemus Siivola Date: Tue, 23 Aug 2011 17:16:50 +0000 (+0300) Subject: disable unsychronized-hash-table test for now X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=66846b840130135ad644ce011f22bf3aaca9f3cf;p=sbcl.git disable unsychronized-hash-table test for now Intermittently causing my laptop to swap instead of terminating with an error. --- diff --git a/tests/threads.impure.lisp b/tests/threads.impure.lisp index e3db63e..3dc340d 100644 --- a/tests/threads.impure.lisp +++ b/tests/threads.impure.lisp @@ -883,7 +883,13 @@ (sb-debug:backtrace) (catch 'done)) -(with-test (:name (:unsynchronized-hash-table)) +(with-test (:name (:unsynchronized-hash-table) + ;; FIXME: This test occasionally eats out craploads + ;; of heap instead of expected error early. Not 100% + ;; sure if it would finish as expected, but since it + ;; hits swap on my system I'm not likely to find out + ;; soon. Disabling for now. -- nikodemus + :skipped-on :sbcl) ;; We expect a (probable) error here: parellel readers and writers ;; on a hash-table are not expected to work -- but we also don't ;; expect this to corrupt the image.