From: <pj...@us...> - 2009-05-21 06:05:19
|
Revision: 6362 http://jython.svn.sourceforge.net/jython/?rev=6362&view=rev Author: pjenvey Date: 2009-05-21 06:04:58 +0000 (Thu, 21 May 2009) Log Message: ----------- bump pipe_buf back down to 512 for Windows, it can't handle 16384 Modified Paths: -------------- trunk/jython/Lib/test/test_subprocess.py Modified: trunk/jython/Lib/test/test_subprocess.py =================================================================== --- trunk/jython/Lib/test/test_subprocess.py 2009-05-21 04:10:49 UTC (rev 6361) +++ trunk/jython/Lib/test/test_subprocess.py 2009-05-21 06:04:58 UTC (rev 6362) @@ -323,7 +323,7 @@ # communicate() with writes larger than pipe_buf # This test will probably deadlock rather than fail, if # communicate() does not work properly. - if mswindows: + if mswindows or (jython and os._name == 'nt'): pipe_buf = 512 elif jython: pipe_buf = 16384 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |