Closed GoogleCodeExporter closed 9 years ago
Attached below are the results of a regression test on my computer. The setup
is:
% uname -a
Darwin dookie.local 10.2.0 Darwin Kernel Version 10.2.0: Tue Nov 3 10:37:10
PST 2009; root:xnu-
1486.2.11~1/RELEASE_I386 i386
The results where:
319 tests OK.
9 tests failed:
test_asynchat test_cpickle test_cprofile test_import test_pickle
test_pickletools test_profile test_smtplib test_xpickle
40 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_bsddb3
test_cd test_cl test_codecmaps_cn test_codecmaps_hk
test_codecmaps_jp test_codecmaps_kr test_codecmaps_tw test_curses
test_dl test_epoll test_gdbm test_gl test_imageop test_imgfile
test_jit_gdb test_largefile test_linuxaudiodev test_macos
test_macostools test_normalization test_ossaudiodev test_pep277
test_py3kwarn test_scriptpackages test_smtpnet test_socketserver
test_startfile test_sunaudiodev test_timeout test_urllib2net
test_urllibnet test_winreg test_winsound test_zipfile64
test_zipimport_support
8 skips unexpected on darwin:
test_dl test_aepack test_applesingle test_macostools test_bsddb185
test_macos test_zipimport_support test_scriptpackages
Original comment by danchr
on 21 Dec 2009 at 7:00
Attachments:
I'm uploading a new patch to the Rietveld issue, #179115, now. Four tests fail,
of which two seem particular to
my setup. The complete output of a test run is attached.
324 tests OK.
4 tests failed:
test_asynchat test_smtplib test_sys test_xpickle
40 tests skipped:
test_aepack test_al test_applesingle test_bsddb185 test_bsddb3
test_cd test_cl test_codecmaps_cn test_codecmaps_hk
test_codecmaps_jp test_codecmaps_kr test_codecmaps_tw test_curses
test_dl test_epoll test_gdbm test_gl test_imageop test_imgfile
test_jit_gdb test_largefile test_linuxaudiodev test_macos
test_macostools test_normalization test_ossaudiodev test_pep277
test_py3kwarn test_scriptpackages test_smtpnet test_socketserver
test_startfile test_sunaudiodev test_timeout test_urllib2net
test_urllibnet test_winreg test_winsound test_zipfile64
test_zipimport_support
8 skips unexpected on darwin:
test_dl test_aepack test_applesingle test_macostools test_bsddb185
test_macos test_zipimport_support test_scriptpackages
Original comment by danchr
on 22 Dec 2009 at 8:42
Attachments:
Three attempts at uploading the patch to Rietveld failed with an HTTP error
500, so I'm uploading it here
instead.
Original comment by danchr
on 22 Dec 2009 at 9:49
Attachments:
Oops; I just noticed that I forgot to refresh the patch before uploading it.
One hunk should be removed:
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -879,11 +879,6 @@ _Unpickler_SetStringInput(Unpicklerobjec
self->input_len = PyString_Size(input);
self->next_read_idx = 0;
- if (PyString_GET_SIZE(str) != n) {
- PyErr_SetNone(PyExc_EOFError);
- return -1;
- }
-
return self->input_len;
}
Original comment by danchr
on 22 Dec 2009 at 9:57
Assigning to jyasskin, since he said he was going to work on this anyway.
Original comment by collinw
on 11 Jan 2010 at 10:30
I'm seeing failures in test_aifc, test_distutils, test_xpickle, and
test_zipfile on x86-64
linux. Still running the tests on darwin.
Original comment by jyass...@gmail.com
on 12 Jan 2010 at 12:50
test_aifc and test_zipfile failed because
Lib/test/{Sine-1000Hz-300ms.aif,zipdir.zip}
are binary files that don't show up in the svn diff. Copying them in manually
fixes
the tests. Here's an updated patch that fixes test_distutils and test_xpickle.
I'm
running a test on Darwin, and then I'll submit this.
Original comment by jyass...@gmail.com
on 12 Jan 2010 at 8:05
Attachments:
Committed as r988. Let me know if you see problems.
Original comment by jyass...@gmail.com
on 12 Jan 2010 at 10:19
Original issue reported on code.google.com by
danchr
on 21 Dec 2009 at 6:47Attachments: