From: <nr...@us...> - 2008-12-03 22:08:17
|
Revision: 5687 http://jython.svn.sourceforge.net/jython/?rev=5687&view=rev Author: nriley Date: 2008-12-03 22:08:15 +0000 (Wed, 03 Dec 2008) Log Message: ----------- avoid test_asynchat on Windows too; refs #1064 Modified Paths: -------------- trunk/jython/Lib/test/test_asynchat.py Modified: trunk/jython/Lib/test/test_asynchat.py =================================================================== --- trunk/jython/Lib/test/test_asynchat.py 2008-12-03 21:42:59 UTC (rev 5686) +++ trunk/jython/Lib/test/test_asynchat.py 2008-12-03 22:08:15 UTC (rev 5687) @@ -7,7 +7,7 @@ import platform os_name = platform.java_ver()[3][0] -if os_name == 'Mac OS X' or 'BSD' in os_name: +if os_name == 'Mac OS X' or 'BSD' in os_name or 'Windows' in os_name: raise test_support.TestSkipped('test_asynchat deadlocks on Jython/BSD: ' 'http://bugs.jython.org/issue1064') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |