Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r68618:73c2132b571d
Date: 2014-01-12 16:00 +0100
http://bitbucket.org/pypy/pypy/changeset/73c2132b571d/

Log:    Disable running tests of asmgcc for OS/X. Don't use asmgcc there
        anyway!

diff --git a/rpython/translator/c/gcc/test/test_trackgcroot.py 
b/rpython/translator/c/gcc/test/test_trackgcroot.py
--- a/rpython/translator/c/gcc/test/test_trackgcroot.py
+++ b/rpython/translator/c/gcc/test/test_trackgcroot.py
@@ -127,6 +127,8 @@
 def check_computegcmaptable(format, path):
     if format == 'msvc':
         r_globallabel = re.compile(r"([\w]+)::")
+    elif format == 'darwin' or format == 'darwin64':
+        py.test.skip("disabled on OS/X's terribly old gcc")
     else:
         r_globallabel = re.compile(r"([\w]+)=[.]+")
     print
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to