[pypy-svn] r54774 - pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/test

tverwaes at codespeak.net tverwaes at codespeak.net
Fri May 16 09:27:23 CEST 2008


Author: tverwaes
Date: Fri May 16 09:27:22 2008
New Revision: 54774

Modified:
   pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/test/test_miniimage.py
Log:
disabling the runimage test


Modified: pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/test/test_miniimage.py
==============================================================================
--- pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/test/test_miniimage.py	(original)
+++ pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/test/test_miniimage.py	Fri May 16 09:27:22 2008
@@ -227,7 +227,7 @@
     assert w_false is objtable.w_false
     
 def test_runimage():
-    #py.test.skip("This method actually runs an image. Fails since no graphical primitives yet")
+    py.test.skip("This method actually runs an image. Fails since no graphical primitives yet")
     from pypy.lang.smalltalk.shadow import SemaphoreShadow
     s_semaphore = SemaphoreShadow(None)
     s_scheduler = s_semaphore.s_scheduler()
@@ -235,11 +235,6 @@
     s_ctx = s_ap.w_suspended_context().as_methodcontext_get_shadow()
     s_ap.store_w_suspended_context(objtable.w_nil)
 
-    print "BOE"
-    print [x for x in enumerate(s_ctx.w_self()._vars)]
-    print s_ctx.stackstart()
-    print s_ctx.stackpointer()
-
     # XXX Important
     # Push return value of snapshot primitive
     # The interpreter must resume at the very moment the snapshot primitive



More information about the Pypy-commit mailing list