Differences between revisions 8 and 9
Revision 8 as of 2009-05-27 03:38:55
Size: 1181
Editor: PhilipJenvey
Comment:
Revision 9 as of 2009-05-28 01:47:30
Size: 1078
Editor: PhilipJenvey
Comment: couple more fixes
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
11 fails unexpected:
    test_classpathimporter test_gettext test_java_integration
9 fails unexpected:
    test_classpathimporter test_java_integration
Line 9: Line 9:
    test_popen test_shutil test_tarfile test_urllib2     test_popen test_shutil test_urllib2
Line 12: Line 12:
* test_gettext - ?
Line 20: Line 19:
* test_tarfile - mostly fixed but still flakey I guess

Windows regrtest failures

9 fails unexpected:
test_classpathimporter test_java_integration test_marshal test_netrc test_old_mailbox test_pkgimport test_popen test_shutil test_urllib2
  • 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_netrc - file handles
  • test_old_mailbox - file handles?
  • test_pkgimport - file handles? but passes over here..
  • test_popen - http://bugs.python.org/issue1559298
  • test_shutil - apparently java.io.File.delete completely ignores ntfs permissions set by test_on_error???
  • test_urllib2 - ?

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

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