Skip to content

Commit b702cf5

Browse files
committed
more specific skip reason
1 parent 2ef8113 commit b702cf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4409,11 +4409,11 @@ def test_pickling(self):
44094409
with self.assertRaisesRegex(TypeError, msg):
44104410
pickle.dumps(f, protocol)
44114411

4412-
@unittest.skipIf(support.is_emscripten, "Corrupts memory")
4412+
@unittest.skipIf(support.is_emscripten, "Emscripten corrupts memory when writing to nonblocking fd")
44134413
def test_nonblock_pipe_write_bigbuf(self):
44144414
self._test_nonblock_pipe_write(16*1024)
44154415

4416-
@unittest.skipIf(support.is_emscripten, "Corrupts memory")
4416+
@unittest.skipIf(support.is_emscripten, "Emscripten corrupts memory when writing to nonblocking fd")
44174417
def test_nonblock_pipe_write_smallbuf(self):
44184418
self._test_nonblock_pipe_write(1024)
44194419

0 commit comments

Comments
 (0)