[pypy-commit] pypy stringbuilder2-perf: Un-skip these tests again

arigo noreply at buildbot.pypy.org
Sun Jun 15 13:11:14 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stringbuilder2-perf
Changeset: r72059:60e786a3cd63
Date: 2014-06-15 13:02 +0200
http://bitbucket.org/pypy/pypy/changeset/60e786a3cd63/

Log:	Un-skip these tests again

diff --git a/rpython/memory/test/gc_test_base.py b/rpython/memory/test/gc_test_base.py
--- a/rpython/memory/test/gc_test_base.py
+++ b/rpython/memory/test/gc_test_base.py
@@ -754,7 +754,6 @@
         self.interpret(fn, [])
 
     def test_stringbuilder(self):
-        py.test.skip("cannot test here, because it's using ll2ctypes")
         def fn():
             s = StringBuilder(4)
             s.append("abcd")
diff --git a/rpython/memory/test/test_transformed_gc.py b/rpython/memory/test/test_transformed_gc.py
--- a/rpython/memory/test/test_transformed_gc.py
+++ b/rpython/memory/test/test_transformed_gc.py
@@ -701,7 +701,6 @@
         return fn
 
     def test_string_builder_over_allocation(self):
-        py.test.skip("cannot test here, because it's using ll2ctypes")
         fn = self.runner("string_builder_over_allocation")
         res = fn([])
         assert res == ord('y')


More information about the pypy-commit mailing list