[Python-checkins] cpython (3.4): Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0

victor.stinner python-checkins at python.org
Wed Sep 3 23:33:54 CEST 2014


http://hg.python.org/cpython/rev/baa372eb731c
changeset:   92310:baa372eb731c
branch:      3.4
parent:      92308:ce14092430b6
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Sep 03 23:32:28 2014 +0200
summary:
  Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0

files:
  Lib/test/test_io.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -3298,6 +3298,8 @@
     def test_interrupted_write_buffered(self):
         self.check_interrupted_write(b"xy", b"xy", mode="wb")
 
+    # Issue #22331: The test hangs on FreeBSD 7.2
+    @support.requires_freebsd_version(8)
     def test_interrupted_write_text(self):
         self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii")
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list