Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r88979:0d6dbff73259
Date: 2016-12-08 18:04 +0100
http://bitbucket.org/pypy/pypy/changeset/0d6dbff73259/

Log:    skip makedev test on Windows

diff --git a/rpython/rlib/test/test_rposix.py b/rpython/rlib/test/test_rposix.py
--- a/rpython/rlib/test/test_rposix.py
+++ b/rpython/rlib/test/test_rposix.py
@@ -281,6 +281,7 @@
     def test_isatty(self):
         assert rposix.isatty(-1) is False
 
+    @py.test.mark.skipif("not hasattr(rposix, 'makedev')")
     def test_makedev(self):
         dev = rposix.makedev(24, 7)
         assert rposix.major(dev) == 24
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to