From: <pj...@us...> - 2010-04-10 20:48:41
|
Revision: 7014 http://jython.svn.sourceforge.net/jython/?rev=7014&view=rev Author: pjenvey Date: 2010-04-10 20:48:35 +0000 (Sat, 10 Apr 2010) Log Message: ----------- just skip this for now on Windows so the buildbot is happy Modified Paths: -------------- trunk/jython/Lib/test/test_java_integration.py Modified: trunk/jython/Lib/test/test_java_integration.py =================================================================== --- trunk/jython/Lib/test/test_java_integration.py 2010-04-10 19:47:19 UTC (rev 7013) +++ trunk/jython/Lib/test/test_java_integration.py 2010-04-10 20:48:35 UTC (rev 7014) @@ -420,6 +420,9 @@ class SecurityManagerTest(unittest.TestCase): def test_nonexistent_import_with_security(self): + if os._name == 'nt': + # http://bugs.jython.org/issue1371 + return script = test_support.findfile("import_nonexistent.py") home = os.path.realpath(sys.prefix) if not os.path.commonprefix((home, os.path.realpath(script))) == home: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |