[pypy-commit] lang-smalltalk default: skip test on CI that fails there

timfel noreply at buildbot.pypy.org
Fri Apr 19 17:16:01 CEST 2013


Author: Tim Felgentreff <timfelgentreff at gmail.com>
Branch: 
Changeset: r302:e6f2d9402270
Date: 2013-04-19 17:15 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/e6f2d9402270/

Log:	skip test on CI that fails there

diff --git a/spyvm/test/test_model.py b/spyvm/test/test_model.py
--- a/spyvm/test/test_model.py
+++ b/spyvm/test/test_model.py
@@ -1,5 +1,6 @@
 import py
 import math
+import socket
 from spyvm import model, shadow
 from spyvm.shadow import MethodNotFound
 from spyvm import objspace, error, display
@@ -287,6 +288,7 @@
         assert target.at0(space, i) == source.at0(space, i)
     assert hex(r_uint(target.value)) == hex(r_uint(source.value))
 
+ at pytest.mark.skipif("socket.gethostname() == 'precise32'")
 def test_display_bitmap():
     # XXX: Patch SDLDisplay -> get_pixelbuffer() to circumvent
     # double-free bug


More information about the pypy-commit mailing list