[issue13725] regrtest does not recognize -d flag

2012-01-14 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset f80f9eb5df02 by Meador Inge in branch '3.2': Issue #13725: regrtest does not recognize -d flag. http://hg.python.org/cpython/rev/f80f9eb5df02 New changeset f2b764dd0851 by Meador Inge in branch 'default': Issue

[issue13725] regrtest does not recognize -d flag

2012-01-14 Thread Meador Inge
Meador Inge mead...@gmail.com added the comment: Éric, I got it. Erno, thanks for the patch. -- nosy: +meador.inge resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue13725] regrtest does not recognize -d flag

2012-01-14 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 3e9b107fb5da by Meador Inge in branch '3.2': Issue #13725: Add a NEWS entry. http://hg.python.org/cpython/rev/3e9b107fb5da New changeset 7332e97587da by Meador Inge in branch 'default': Issue #13725: Add a NEWS

[issue13725] regrtest does not recognize -d flag

2012-01-14 Thread Erno Tukia
Erno Tukia erno.tu...@iki.fi added the comment: Meador, thanks for the acknowledgement. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13725 ___

[issue13725] regrtest does not recognize -d flag

2012-01-13 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the report and patch; I can’t easily push these days but if nobody gets to it today I will commit this. BTW, are you finding these regrtest bugs while using it to run the CPython test suite or to run your tests? -- nosy:

[issue13725] regrtest does not recognize -d flag

2012-01-13 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: unittest.test.test_program.TestCommandLineArgs has a few test functions that do at least a minimal test of help and verbosity options and command line args. Should more be added for other options, like this and #13726? -- nosy:

[issue13725] regrtest does not recognize -d flag

2012-01-13 Thread Erno Tukia
Erno Tukia erno.tu...@iki.fi added the comment: @Éric I just tried to fix, with tests, the imaplib bug (#13700) and I found this bug. And fixing this bug I happened to notice in the source code another bug (#13726). No problems with CPython test suite relating to these regrtest bugs.

[issue13725] regrtest does not recognize -d flag

2012-01-13 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Erno: Okay, I just wanted to make sure you weren’t using it for your own projects, as regrtest is not an official public module. Thanks for your patches! -- ___ Python tracker rep...@bugs.python.org

[issue13725] regrtest does not recognize -d flag

2012-01-07 Thread Erno Tukia
New submission from Erno Tukia erno.tu...@iki.fi: ./python -m test --help -d/--debug -- print traceback for failed tests ./python -m test -d test_imaplib option -d not recognized Use --help for usage Patch included. -- components: Tests files: regrtest-debug.patch keywords: patch