From: <pj...@us...> - 2009-05-26 06:28:28
|
Revision: 6377 http://jython.svn.sourceforge.net/jython/?rev=6377&view=rev Author: pjenvey Date: 2009-05-26 06:28:07 +0000 (Tue, 26 May 2009) Log Message: ----------- disable test_mailbox on Windows for now because it fails so miserably and ruins other tests Modified Paths: -------------- trunk/jython/Lib/test/regrtest.py Modified: trunk/jython/Lib/test/regrtest.py =================================================================== --- trunk/jython/Lib/test/regrtest.py 2009-05-26 00:03:26 UTC (rev 6376) +++ trunk/jython/Lib/test/regrtest.py 2009-05-26 06:28:07 UTC (rev 6377) @@ -1489,6 +1489,10 @@ _platform = sys.platform if _platform[:4] == 'java': _platform = 'java' + if os._name == 'nt': + # XXX: Omitted for now because it fails so miserably and ruins + # other tests + _failures['java'] += '\ntest_mailbox' class _ExpectedSkips: def __init__(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |