Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2007-07-10 13:56:06
Size: 653
Editor: 213
Comment:
Revision 13 as of 2007-07-11 06:57:52
Size: 2472
Editor: 213
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
List of tests that are failing in the py3k-struni branch. = List of tests that are failing in the py3k-struni branch =

(Back to ["Python3000"]
.)
Line 5: 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 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 "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)
----
CategoryLanguage
  * 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 "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 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_asynchat

test_audioop

test_bigmem

test_cProfile: not worth it? (I think this will be killed)

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

test_compile

test_cookielib

test_cpickle: not worth it? (I think this may be killed.)

test_csv

test_ctypes

test_descr ChristianHeimes: The error is caused by a nasty inconsistence: {{{

>>> class Letter(str):
... def __str__(self): return 'v'
...
>>> Letter('w')
'w'
>>> str(Letter('w')) # Python 3k
'w'
>>> str(Letter('w')) # Python 2.5
'v'
}}}


test_dl

test_doctest

test_email

test_email_codecs

test_email_renamed

test_frozen

test_ftplib

test_getargs

test_gettext

test_macostools (OSX only)

test_mailbox

test_minidom

test_mmap

test_old_mailbox

test_pep263

test_pickletools

test_plistlib (OSX only)

test_poll

test_poplib

test_pyexpat

test_quopri

test_resource

test_scriptpackages (OSX only)

test_sgmllib (passes on Ubuntu, fails on OSX)

test_shelve

test_sqlite

test_tarfile

test_tcl

test_threaded_import

test_ucn

test_unicode_file

test_urllib2

test_urllib2_localnet

test_uu

test_uuid (passes on OSX, fails on Ubuntu)

test_wave: probably not worth fixing; aren't we going to delete this?

test_xdrlib

test_xml_etree

test_xml_etree_c

test_xmlrpc

test_xpickle

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

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 "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 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_asynchat

test_audioop

test_bigmem

test_cProfile: not worth it? (I think this will be killed)

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

test_compile

test_cookielib

test_cpickle: not worth it? (I think this may be killed.)

test_csv

test_ctypes

test_descr ChristianHeimes: The error is caused by a nasty inconsistence:

>>> class Letter(str):
...     def __str__(self): return 'v'
... 
>>> Letter('w')
'w'
>>> str(Letter('w')) # Python 3k
'w'
>>> str(Letter('w')) # Python 2.5
'v'

test_dl

test_doctest

test_email

test_email_codecs

test_email_renamed

test_frozen

test_ftplib

test_getargs

test_gettext

test_macostools (OSX only)

test_mailbox

test_minidom

test_mmap

test_old_mailbox

test_pep263

test_pickletools

test_plistlib (OSX only)

test_poll

test_poplib

test_pyexpat

test_quopri

test_resource

test_scriptpackages (OSX only)

test_sgmllib (passes on Ubuntu, fails on OSX)

test_shelve

test_sqlite

test_tarfile

test_tcl

test_threaded_import

test_ucn

test_unicode_file

test_urllib2

test_urllib2_localnet

test_uu

test_uuid (passes on OSX, fails on Ubuntu)

test_wave: probably not worth fixing; aren't we going to delete this?

test_xdrlib

test_xml_etree

test_xml_etree_c

test_xmlrpc

test_xpickle

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

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

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