This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skip.montanaro
Recipients brett.cannon, eric.araujo, ezio.melotti, georg.brandl, pitrou, python-dev, r.david.murray, skip.montanaro, vstinner
Date 2011-03-23.23:26:57
SpamBayes Score 4.8771863e-08
Marked as misclassified No
Message-id <19850.33212.669578.173567@montanaro.dyndns.org>
In-reply-to <E1Q2WB2-0001Rz-26@dinsdale.python.org>
Content
Antoine> New changeset 9aa6097131ef by Antoine Pitrou in branch '3.2':
    Antoine> Issue #11653: fix -W with -j in regrtest
    Antoine> http://hg.python.org/cpython/rev/9aa6097131ef

    Antoine> New changeset c381b35e4f31 by Antoine Pitrou in branch 'default':
    Antoine> Issue #11653: fix -W with -j in regrtest.
    Antoine> http://hg.python.org/cpython/rev/c381b35e4f31

Saw these checkins and tried again.  I definitely see different output and
it seems to rerun failed tests immediately in verbose mode.  For example:

    [238/352] test_pydoc
    Re-running test test_pydoc in verbose mode
    test_badimport (test.test_pydoc.PydocDocTest) ... FAIL
    test_help_output_redirect (test.test_pydoc.PydocDocTest) ... ok
    test_html_doc (test.test_pydoc.PydocDocTest) ... ok
    test_input_strip (test.test_pydoc.PydocDocTest) ... ok
    test_issue8225 (test.test_pydoc.PydocDocTest) ... ok
    test_not_here (test.test_pydoc.PydocDocTest) ... ok
    test_stripid (test.test_pydoc.PydocDocTest) ... ok
    test_text_doc (test.test_pydoc.PydocDocTest) ... ok
    test_class (test.test_pydoc.TestDescriptions) ... ok
    test_module (test.test_pydoc.TestDescriptions) ... ok
    test_server (test.test_pydoc.PydocServerTest) ... ok
    test_content_type_err (test.test_pydoc.PydocUrlHandlerTest) ... ok
    test_url_requests (test.test_pydoc.PydocUrlHandlerTest) ... ok

However, I also see lots of tests crashing in imp.  Here's one example:

    test test_ttk_textonly crashed -- Traceback (most recent call last):
      File "/Users/skip/src/hgpython/cpython/Lib/test/regrtest.py", line 988, in runtest_inner
        the_package = __import__(abstest, globals(), locals(), [])
      File "/Users/skip/src/hgpython/cpython/Lib/test/test_ttk_textonly.py", line 7, in <module>
        from tkinter.test import runtktests
      File "/Users/skip/src/hgpython/cpython/Lib/importlib/_bootstrap.py", line 437, in load_module
        return self._load_module(fullname)
      File "/Users/skip/src/hgpython/cpython/Lib/importlib/_bootstrap.py", line 141, in decorated
        return fxn(self, module, *args, **kwargs)
      File "/Users/skip/src/hgpython/cpython/Lib/importlib/_bootstrap.py", line 330, in _load_module
        code_object = self.get_code(name)
      File "/Users/skip/src/hgpython/cpython/Lib/importlib/_bootstrap.py", line 407, in get_code
        imp._fix_co_filename(found, source_path)
    AttributeError: 'module' object has no attribute '_fix_co_filename'

Skip
History
Date User Action Args
2011-03-23 23:26:58skip.montanarosetrecipients: + skip.montanaro, brett.cannon, georg.brandl, pitrou, vstinner, ezio.melotti, eric.araujo, r.david.murray, python-dev
2011-03-23 23:26:57skip.montanarolinkissue11653 messages
2011-03-23 23:26:57skip.montanarocreate