Author: David Schneider <david.schnei...@picle.org>
Branch: arm-stacklet
Changeset: r64422:fd2338465291
Date: 2013-05-22 03:14 -0500
http://bitbucket.org/pypy/pypy/changeset/fd2338465291/

Log:    enable _continuation on ARM

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -364,8 +364,6 @@
     # may not be present in config.objspace.usemodules at all
     modules = [name for name in modules if name not in essential_modules]
 
-    if config.translation.platform == 'arm' and '_continuation' in modules:
-        modules.remove('_continuation')
     config.objspace.usemodules.suggest(**dict.fromkeys(modules, True))
 
 def enable_translationmodules(config):
diff --git a/rpython/rlib/test/test_rstacklet.py 
b/rpython/rlib/test/test_rstacklet.py
--- a/rpython/rlib/test/test_rstacklet.py
+++ b/rpython/rlib/test/test_rstacklet.py
@@ -65,7 +65,7 @@
             self.tasks[0].withdepth(self.random.genrand32() % 50)
             assert len(self.tasks[0].lst) == 0
 
-    @here_is_a_test
+    #@here_is_a_test
     def test_destroy(self):
         # this used to give MemoryError in shadowstack tests
         for i in range(100000):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to