[pypy-commit] stmgc c7-refactor: Skip these two tests, see message

arigo noreply at buildbot.pypy.org
Mon Feb 24 23:54:37 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: c7-refactor
Changeset: r846:1f4d5cf924de
Date: 2014-02-24 23:50 +0100
http://bitbucket.org/pypy/stmgc/changeset/1f4d5cf924de/

Log:	Skip these two tests, see message

diff --git a/c7/test/test_nursery.py b/c7/test/test_nursery.py
--- a/c7/test/test_nursery.py
+++ b/c7/test/test_nursery.py
@@ -112,6 +112,8 @@
         assert len(seen) < 5     # addresses are reused
 
     def test_reset_partial_alloc_pages(self):
+        py.test.skip("a would-be-nice feature, but not actually needed: "
+                     "the next major GC will take care of it")
         self.start_transaction()
         new = stm_allocate(16)
         stm_set_char(new, 'a')
@@ -129,6 +131,8 @@
         assert stm_get_char(newer) == '\0'
 
     def test_reuse_page(self):
+        py.test.skip("a would-be-nice feature, but not actually needed: "
+                     "the next major GC will take care of it")
         self.start_transaction()
         new = stm_allocate(16)
         self.push_root(new)


More information about the pypy-commit mailing list