Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r49849:83abd151160b Date: 2011-11-27 11:31 +0100 http://bitbucket.org/pypy/pypy/changeset/83abd151160b/
Log: Skip the asmgcc tests on windows. diff --git a/pypy/rlib/test/test_rstacklet.py b/pypy/rlib/test/test_rstacklet.py --- a/pypy/rlib/test/test_rstacklet.py +++ b/pypy/rlib/test/test_rstacklet.py @@ -1,4 +1,4 @@ -import gc +import gc, sys import py from pypy.rpython.tool.rffi_platform import CompilationError try: @@ -224,6 +224,8 @@ config.translation.continuation = True config.translation.gcrootfinder = cls.gcrootfinder GCROOTFINDER = cls.gcrootfinder + if cls.gcrootfinder == "asmgcc" and sys.platform == "win32": + py.test.skip("fails with asmgcc on win32") cls.config = config cls.old_values = Runner.config, Runner.STATUSMAX Runner.config = config _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit