[Python-checkins] cpython (merge 3.4 -> default): (Merge 3.4) Issue #22331: Skip test_interrupted_write_text() on FreeBSD older

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


http://hg.python.org/cpython/rev/340d48347295
changeset:   92311:340d48347295
parent:      92309:e2e0c9f90a81
parent:      92310:baa372eb731c
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Sep 03 23:33:43 2014 +0200
summary:
  (Merge 3.4) 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
@@ -3383,6 +3383,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