Differences between revisions 2 and 63 (spanning 61 versions)
Revision 2 as of 2007-07-10 14:04:43
Size: 1942
Editor: 213
Comment:
Revision 63 as of 2007-07-20 03:55:49
Size: 4704
Editor: 72
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
  * if you start working on a test, to avoid duplicate work, add your name+email+date to the bulleted item for the test below, with the text "FIXING" or "INVESTIGATING"   * if you start working on a test, to avoid duplicate work, add your name+email+date to the bulleted item for the test below, with the text "MINE"
Line 9: Line 9:
  * if you fix a test, and you check in the fix, add a note "FIXED" (occasionally we'll clean these up)
  * if you don't have checkin permissions, use the SF patch manager and note the patch number here (perhaps in the form of a link to python.org/sf/NNNNN), and add a note "FIXED" (plus name etc.)
  * if you fix a test, and you check in the fix, add a note "COMMITTED" with the svn revision (occasionally we'll clean these up)
  * if you don't have checkin permissions, use the SF patch manager and note the patch number here (perhaps in the form of a link to python.org/sf/NNNNN), and add a note "FIXED IN SF" (plus name etc.)
Line 14: Line 14:
  * Assume you've got the py3k-struni branch checked out
  *
./configure
  * make
  * ./python Lib/test/regrtest.py test_foobar
  *
./python Lib/test/test_foobar.py # for more detail about failures
Assume you've got the py3k-struni branch checked out.
{{{
./configure
make
./python Lib/test/regrtest.py test_foobar  # runs test_foobar
./python Lib/test/test_foobar.py # for more detail about failures
}}}
Line 22: Line 24:
test_aepack test_aepack (OSX only)
Line 24: Line 26:
test_applesingle test_applesingle (OSX only)
Line 26: Line 28:
test_asynchat test_audioop lin2alaw() and lin2ulaw() are returning str8 instead of str. Shouldn't the methods return bytes? A: yes they should return bytes. (GvR)
Line 28: Line 30:
test_audioop

test_bigmem

test_cProfile

test_cmd_line
test_bsddb
Line 38: Line 34:
test_coding: fails on CYGWIN only
Line 39: Line 37:

test_cpickle
Line 44: Line 40:
test_ctypes

test_descr

test_dl
test_descr says: ['foo\u1234bar'] slots not caught
Line 58: Line 50:
test_frozen test_frozen in Python/frozen.c ''{"__phello__.spam", M___hello__, SIZE},'' doesn't add a spam module. (But why?!?!)
Line 60: Line 52:
test_ftplib test_getargs: (amauryfa) I suggest to remove this test. Now that conversion from unicode to char* uses utf8, no error can occur.
Line 62: Line 54:
test_genericpath test_largefile
Line 64: Line 56:
test_getargs

test_gettext

test_hmac

test_macostools
test_macostools (OSX only)
Line 74: Line 60:
test_marshal test_marshal: fails on CYGWIN only
Line 78: Line 64:
test_mmap
Line 82: Line 66:
test_pep263

test_pickle

test_pickletools

test_plistlib

test_poll
test_plistlib (OSX only)
Line 93: Line 69:

test_posixpath
Line 102: Line 76:
test_scriptpackages test_scriptpackages (OSX only)
Line 104: Line 78:
test_sgmllib test_sgmllib (passes on Ubuntu, fails on OSX, and on CYGWIN)
Line 108: Line 82:
test_socket
Line 112: Line 84:
test_tarfile test_tarfile: A lot of TypeError: can't concat bytes to str and other byte/str confusions.
Line 115: Line 87:

test_telnetlib
Line 124: Line 94:
test_urllib test_urllib2: tests pass on my laptop, don't pass elsewhere -- giving up as I don't know what's up with it -- Hasan Diwan.
Line 126: Line 96:
test_urllib2 test_urllib2_localnet
Line 128: Line 98:
test_uu test_uuid (passes on OSX, fails on Ubuntu), Guido has disabled some tests: 53686 guido.van.rossum print(""" WARNING: uuid._unixdll_getnode is unreliable on many platforms.
Line 130: Line 100:
test_wave test_wave: probably not worth fixing; aren't we going to delete this? Anthony Baxter might want it (Brett Cannon).
Line 140: Line 110:
test_xpickle test_zipimport: lots of str/bytes issues, shouldn't be too hard; important
Line 142: Line 112:
test_zipimport == Previously Fixed ==
Line 144: Line 114:
----
CategoryLanguage
test_asynchat FIXED IN SF http://www.python.org/sf/1752173 Alexandre Vassalotti. COMMITTED r56290.

test_bigmem FIXED IN SF http://www.python.org/sf/1752195. COMMITTED r56295.

test_cmd_line: FIXED IN SF http://www.python.org/sf/1751493 ChristianHeimes -- COMMITTED
 
test_cpickle: Deleted, with cPickle. Alexandre's SoC work should lead to cPickle becoming invisible (Brett Cannon).

test_ctypes: ThomasHeller: FIXED r56338.

test_cProfile: FIXED IN SF http://www.python.org/sf/1755176 by Amaury Forgeot d'Arc COMMITTED r56406.

test_datetime: pickling is broken since r56461, due to cPickle not understanding bytes. Decided the right solution is to stop using cPickle. COMMITTED r56462. GvR.

test_descr GuidoVanRossum: FIXED r56252.

test_dl FIXED IN SF http://www.python.org/sf/1752229 AlexandreVassalotti 2007-07-11 COMMITTED r56288.

test_ftplib: FIXED IN SF http://www.python.org/sf/1755206 by Amaury Forgeot d'Arc. FIXED differently by GvR.

test_gettext FIXED IN SF http://www.python.org/sf/1751958 ChristianHeimes. COMMITTED r56292.

test_mmap JoeGregorio FIXED IN SF http://www.python.org/sf/1752647
COMMITTED r56400.

test_pep263 ChristianHeimes FIXED IN WIKI. The fix isn't worth a patch. You have to convert two string to byte by putting a b in front of them. .encode() returns bytes. COMMITTED by ThomasHeller.

test_pickle: started complaining about unhashable type: 'bytes' since MvL's checkin. COMMITTED r56461 GvR.

test_pickletools Pickle doesn't handle str vs. str8 vs. byte correctly. Do we pickle str as UNICODE or STRING? FIXED by GvR.

test_poll Christian Heimes FIXED IN WIKI: Replace MSG = " This is a test." with MSG = b" This is a test." COMMITTED r56285.

test_uu FIXED IN SF ChristianHeimes http://www.python.org/sf/1754339 The patch may fix several other unit tests, too. (A different fix was committed; GvR.)

test_xpickle: deleted, with cPickle.

List of tests that are failing in the py3k-struni branch

(Back to ["Python3000"].)

Protocol:

  • if you start working on a test, to avoid duplicate work, add your name+email+date to the bulleted item for the test below, with the text "MINE"
  • if you figure out why a test is failing, just add a note (name etc. is still appreciated)
  • if you fix a test, and you check in the fix, add a note "COMMITTED" with the svn revision (occasionally we'll clean these up)
  • if you don't have checkin permissions, use the SF patch manager and note the patch number here (perhaps in the form of a link to python.org/sf/NNNNN), and add a note "FIXED IN SF" (plus name etc.)

How to run tests

Assume you've got the py3k-struni branch checked out.

./configure
make
./python Lib/test/regrtest.py test_foobar  # runs test_foobar
./python Lib/test/test_foobar.py   # for more detail about failures

The tests

test_aepack (OSX only)

test_applesingle (OSX only)

test_audioop lin2alaw() and lin2ulaw() are returning str8 instead of str. Shouldn't the methods return bytes? A: yes they should return bytes. (GvR)

test_bsddb

test_compile

test_coding: fails on CYGWIN only

test_cookielib

test_csv

test_descr says: ['foo\u1234bar'] slots not caught

test_doctest

test_email

test_email_codecs

test_email_renamed

test_frozen in Python/frozen.c {"phello.spam", M_hello, SIZE}, doesn't add a spam module. (But why?!?!)

test_getargs: (amauryfa) I suggest to remove this test. Now that conversion from unicode to char* uses utf8, no error can occur.

test_largefile

test_macostools (OSX only)

test_mailbox

test_marshal: fails on CYGWIN only

test_minidom

test_old_mailbox

test_plistlib (OSX only)

test_poplib

test_pyexpat

test_quopri

test_resource

test_scriptpackages (OSX only)

test_sgmllib (passes on Ubuntu, fails on OSX, and on CYGWIN)

test_shelve

test_sqlite

test_tarfile: A lot of TypeError: can't concat bytes to str and other byte/str confusions.

test_tcl

test_threaded_import

test_ucn

test_unicode_file

test_urllib2: tests pass on my laptop, don't pass elsewhere -- giving up as I don't know what's up with it -- Hasan Diwan.

test_urllib2_localnet

test_uuid (passes on OSX, fails on Ubuntu), Guido has disabled some tests: 53686 guido.van.rossum print(""" WARNING: uuid._unixdll_getnode is unreliable on many platforms.

test_wave: probably not worth fixing; aren't we going to delete this? Anthony Baxter might want it (Brett Cannon).

test_xdrlib

test_xml_etree

test_xml_etree_c

test_xmlrpc

test_zipimport: lots of str/bytes issues, shouldn't be too hard; important

Previously Fixed

test_asynchat FIXED IN SF http://www.python.org/sf/1752173 Alexandre Vassalotti. COMMITTED r56290.

test_bigmem FIXED IN SF http://www.python.org/sf/1752195. COMMITTED r56295.

test_cmd_line: FIXED IN SF http://www.python.org/sf/1751493 ChristianHeimes -- COMMITTED

test_cpickle: Deleted, with cPickle. Alexandre's SoC work should lead to cPickle becoming invisible (Brett Cannon).

test_ctypes: ThomasHeller: FIXED r56338.

test_cProfile: FIXED IN SF http://www.python.org/sf/1755176 by Amaury Forgeot d'Arc COMMITTED r56406.

test_datetime: pickling is broken since r56461, due to cPickle not understanding bytes. Decided the right solution is to stop using cPickle. COMMITTED r56462. GvR.

test_descr GuidoVanRossum: FIXED r56252.

test_dl FIXED IN SF http://www.python.org/sf/1752229 AlexandreVassalotti 2007-07-11 COMMITTED r56288.

test_ftplib: FIXED IN SF http://www.python.org/sf/1755206 by Amaury Forgeot d'Arc. FIXED differently by GvR.

test_gettext FIXED IN SF http://www.python.org/sf/1751958 ChristianHeimes. COMMITTED r56292.

test_mmap JoeGregorio FIXED IN SF http://www.python.org/sf/1752647 COMMITTED r56400.

test_pep263 ChristianHeimes FIXED IN WIKI. The fix isn't worth a patch. You have to convert two string to byte by putting a b in front of them. .encode() returns bytes. COMMITTED by ThomasHeller.

test_pickle: started complaining about unhashable type: 'bytes' since MvL's checkin. COMMITTED r56461 GvR.

test_pickletools Pickle doesn't handle str vs. str8 vs. byte correctly. Do we pickle str as UNICODE or STRING? FIXED by GvR.

test_poll Christian Heimes FIXED IN WIKI: Replace MSG = " This is a test." with MSG = b" This is a test." COMMITTED r56285.

test_uu FIXED IN SF ChristianHeimes http://www.python.org/sf/1754339 The patch may fix several other unit tests, too. (A different fix was committed; GvR.)

test_xpickle: deleted, with cPickle.

Py3kStrUniTests (last edited 2008-11-15 14:00:38 by localhost)

Unable to edit the page? See the FrontPage for instructions.