Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r1477:856e8185c32f
Date: 2014-03-07 07:48 +0100
http://bitbucket.org/cffi/cffi/changeset/856e8185c32f/

Log:    Skip the sinf test on windows

diff --git a/testing/test_function.py b/testing/test_function.py
--- a/testing/test_function.py
+++ b/testing/test_function.py
@@ -54,6 +54,8 @@
         assert x == math.sin(1.23)
 
     def test_sinf(self):
+        if sys.platform == 'win32':
+            py.test.skip("no sinf found in the Windows stdlib")
         ffi = FFI(backend=self.Backend())
         ffi.cdef("""
             float sinf(float x);
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to