summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-08 15:01:31 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-08 15:01:31 (GMT)
commitcd5ca6a564bedabd770389e4041755dc25e5de4a (patch)
tree7102f599e8d34eb7b0ca3e7a61269bd112c6f1cb
parent57ddf78b6b18d9da6f466b4e6da0437c3271196e (diff)
downloadcpython-cd5ca6a564bedabd770389e4041755dc25e5de4a.zip
cpython-cd5ca6a564bedabd770389e4041755dc25e5de4a.tar.gz
cpython-cd5ca6a564bedabd770389e4041755dc25e5de4a.tar.bz2
Issue #20113: Fix test_posix on OpenIndiana
-rw-r--r--Lib/test/test_posix.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index 5e680c9..60806aa 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -290,7 +290,14 @@ class PosixTester(unittest.TestCase):
self.assertEqual(b'test1tt2t3', posix.read(fd, 10))
# Issue #20113: empty list of buffers should not crash
- self.assertEqual(posix.writev(fd, []), 0)
+ try:
+ size = posix.writev(fd, [])
+ except OSError:
+ # writev(fd, []) raises OSError(22, "Invalid argument")
+ # on OpenIndiana
+ pass
+ else:
+ self.assertEqual(size, 0)
finally:
os.close(fd)
@@ -305,7 +312,14 @@ class PosixTester(unittest.TestCase):
self.assertEqual([b'test1', b'tt2', b't3'], [bytes(i) for i in buf])
# Issue #20113: empty list of buffers should not crash
- self.assertEqual(posix.readv(fd, []), 0)
+ try:
+ size = posix.readv(fd, [])
+ except OSError:
+ # readv(fd, []) raises OSError(22, "Invalid argument")
+ # on OpenIndiana
+ pass
+ else:
+ self.assertEqual(size, 0)
finally:
os.close(fd)