Update of /cvsroot/sbcl/sbcl/tests
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv24272/tests
Modified Files:
Tag: lutex-branch
threads.impure.lisp
Log Message:
0.9.12.26.lutex-branch.42:
* Fix saving purified cores with lutexes
* Clean up remnants of the original semaphore-based lutex implementation
* Automatically set the right features for lutex-using platforms
in make-config.sh
* Remove restoration of %fs from the signal context (obsoleted earlier
by restoring it from TLS)
* Other minor cleanups
Index: threads.impure.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/tests/threads.impure.lisp,v
retrieving revision 1.38.2.5
retrieving revision 1.38.2.6
diff -u -d -r1.38.2.5 -r1.38.2.6
--- threads.impure.lisp 10 Apr 2006 08:43:55 -0000 1.38.2.5
+++ threads.impure.lisp 31 May 2006 23:21:14 -0000 1.38.2.6
@@ -609,8 +609,7 @@
(force-output)
(condition-broadcast queue)))))
-(with-test (:name (:mutex :finalization)
- :fails-on :sb-lutex)
+(with-test (:name (:mutex :finalization))
(let ((a nil))
(dotimes (i 500000)
(setf a (make-mutex)))))
|