Author: mattip <[email protected]>
Branch: 
Changeset: r72043:ff3718cdc0c1
Date: 2014-06-13 16:12 +0300
http://bitbucket.org/pypy/pypy/changeset/ff3718cdc0c1/

Log:    no asmgcc on MSVC

diff --git a/rpython/jit/backend/x86/test/test_zrpy_releasegil.py 
b/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
--- a/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
+++ b/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
@@ -1,9 +1,11 @@
 from rpython.jit.backend.llsupport.test.zrpy_releasegil_test import 
ReleaseGILTests
+from rpython.translator.platform import platform as compiler
 
 
 class TestShadowStack(ReleaseGILTests):
     gcrootfinder = "shadowstack"
 
 
-class TestAsmGcc(ReleaseGILTests):
-    gcrootfinder = "asmgcc"
+if compiler.name != 'msvc':
+    class TestAsmGcc(ReleaseGILTests):
+        gcrootfinder = "asmgcc"
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to