[pypy-svn] r48833 - pypy/dist/pypy/module/thread/test

fijal at codespeak.net fijal at codespeak.net
Tue Nov 20 13:49:03 CET 2007


Author: fijal
Date: Tue Nov 20 13:49:03 2007
New Revision: 48833

Modified:
   pypy/dist/pypy/module/thread/test/test_ll_thread.py
Log:
Remove the never-to-work-and-not-needed-test


Modified: pypy/dist/pypy/module/thread/test/test_ll_thread.py
==============================================================================
--- pypy/dist/pypy/module/thread/test/test_ll_thread.py	(original)
+++ pypy/dist/pypy/module/thread/test/test_ll_thread.py	Tue Nov 20 13:49:03 2007
@@ -90,16 +90,3 @@
     freed_counter = fn()
     print freed_counter
     assert freed_counter > 0
-
-def test_prebuilt_lock():
-    py.test.skip("Does not work (prebuilt opaque object)")
-    l = allocate_lock()
-
-    def f():
-        l.acquire(True)
-        l.release()
-
-    fn = compile(f, [], gcpolicy='boehm')
-    fn()
-
-    



More information about the Pypy-commit mailing list