Differences between revisions 9 and 10
Revision 9 as of 2009-05-28 01:47:30
Size: 1078
Editor: PhilipJenvey
Comment: couple more fixes
Revision 10 as of 2009-05-28 06:14:24
Size: 924
Editor: PhilipJenvey
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
9 fails unexpected:
    test_classpathimporter test_java_integration
   
test_marshal test_netrc test_old_mailbox test_pkgimport
    test_p
open test_shutil test_urllib2
6 tests failed:
    test_classpathimporter test_java_integration test_marshal
   test_old_mailbox test_popen test_shutil
Line 14: Line 13:
* test_netrc - file handles
Line 16: Line 14:
* test_pkgimport - file handles? but passes over here..
Line 19: Line 16:
* test_urllib2 - ?

Windows regrtest failures

6 tests failed:
test_classpathimporter test_java_integration test_marshal test_old_mailbox test_popen test_shutil
  • test_classpathimporter - file handles, though not a straightforward fix, org.python.core.ClasspathPyImporter is the culprit
  • test_java_integration - jython.bat needs (or 'should' as there's absolutely nothing subprocess can do about it) to strip surrounding quotes from command line arguments
  • test_marshal - recursion tests blow out stack. jython.bat sets Xss512k (and posix sets Xss1024k) but windows seems to need Xss1280k to pass
  • test_old_mailbox - file handles?
  • test_popen - http://bugs.python.org/issue1559298
  • test_shutil - apparently java.io.File.delete completely ignores ntfs permissions set by test_on_error???

Also test_mailbox fails horribly and is temporarily disabled from regrtest --expected

JythonDeveloperGuide/RegressionTestNotes (last edited 2009-05-31 00:27:42 by PhilipJenvey)