[issue10541] regrtest.py -T broken

2014-06-29 Thread Berker Peksag
Changes by Berker Peksag : -- stage: commit review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10541] regrtest.py -T broken

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 10cf594ace4b by Alexander Belopolsky in branch 'default': Fixes #10541: regrtest -T is broken http://hg.python.org/cpython/rev/10cf594ace4b -- nosy: +python-dev ___ Python tracker

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue10541] regrtest.py -T broken

2013-01-12 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: -eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue10541] regrtest.py -T broken

2013-01-11 Thread Brett Cannon
Brett Cannon added the comment: Alexander's patch LGTM -- assignee: -> belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10541] regrtest.py -T broken

2011-01-22 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue10541] regrtest.py -T broken

2011-01-22 Thread Brett Cannon
Brett Cannon added the comment: At least the test_trace fix for preventing the complete destruction of any preset trace should be looked at and possibly applied separately (prevents coverage.py from covering the entire test suite as well). Should probably add a test to regrtest to make sure t

[issue10541] regrtest.py -T broken

2010-12-15 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +eli.bendersky, terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue10541] regrtest.py -T broken

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am attaching a patch that fixes write_results() and makes test_trace tests restore the tracefunc after they run. This fixes generation off the coverage files, but many tests still fail when traced. -- keywords: +patch stage: needs patch -> pa

[issue10541] regrtest.py -T broken

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Here is a simpler invocation that produces a similar error: $ ./python.exe -m test.regrtest -T test_trace test_pkg ... IOError: [Errno 2] No such file or directory: '/var/folders/qs/qsqFUI2xFUKG+9CTf4z7pU+++TI/-Tmp-/tmpy1iyp7/t4/sub/__init__.py' -

[issue10541] regrtest.py -T broken

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue10541] regrtest.py -T broken

2010-11-29 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: haypo -> resolution: invalid -> ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue10541] regrtest.py -T broken

2010-11-29 Thread Walter Dörwald
Walter Dörwald added the comment: OK, I reran the test with:: ./python -mtest.regrtest -T -N test_urllib and this does indeed produce coverage files (for _abcoll, _weakrefset, abc, base64, codecs, collections, contextlib, functools, genericpath, hashlib, locale, mimetypes, os, posixpath,

[issue10541] regrtest.py -T broken

2010-11-27 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I would like to investigate this some more. In theory, regrtest should restore cwd before coverage results are written. -- status: pending -> open ___ Python tracker _

[issue10541] regrtest.py -T broken

2010-11-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: `make coverage` is fine, you just have to use the "-m test.regrtest" form when running the tests. -- nosy: +pitrou resolution: -> invalid status: open -> pending ___ Python tracker

[issue10541] regrtest.py -T broken

2010-11-27 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Apparently something in the test changes the cwd. Both of the following invocations work: $ ./python.exe `pwd`/Lib/test/regrtest.py -T -N test_urllib $ ./python.exe -m test.regrtest -T -N test_urllib I would suggest changing the coverage target in the M

[issue10541] regrtest.py -T broken

2010-11-26 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10541] regrtest.py -T broken

2010-11-26 Thread Walter Dörwald
New submission from Walter Dörwald : Running regrtest.py with coverage option seems to be broken for the py3k branch at the moment. Run the following commands on the shell: wget http://svn.python.org/snapshots/python3k.tar.bz2 tar xjf python3k.tar.bz2 cd python ./configure --enable-unicode=ucs4