From: <pj...@us...> - 2009-05-30 06:49:09
|
Revision: 6428 http://jython.svn.sourceforge.net/jython/?rev=6428&view=rev Author: pjenvey Date: 2009-05-30 06:49:08 +0000 (Sat, 30 May 2009) Log Message: ----------- just skip test_popen on windows when ' ' in sys.executable as CPython still suffers from this anyway Modified Paths: -------------- trunk/jython/Lib/test/regrtest.py Modified: trunk/jython/Lib/test/regrtest.py =================================================================== --- trunk/jython/Lib/test/regrtest.py 2009-05-30 06:41:33 UTC (rev 6427) +++ trunk/jython/Lib/test/regrtest.py 2009-05-30 06:49:08 UTC (rev 6428) @@ -1493,6 +1493,9 @@ # XXX: Omitted for now because it fails so miserably and ruins # other tests _failures['java'] += '\ntest_mailbox' + if ' ' in sys.executable: + # http://bugs.python.org/issue1559298 + _failures['java'] += '\ntest_popen' class _ExpectedSkips: def __init__(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |