[issue8565] Always run regrtest.py with -bb

2010-04-30 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread R. David Murray
R. David Murray added the comment: There are currently (at least) two places where regrtest is invoked by the buildbots, one for unix and one for windows. The flags used are not always in sync, but probably should be. I think it is probably better to not hack regrtest for this, since that wo

[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread STINNER Victor
STINNER Victor added the comment: > +1 to force -bb on buildbots I think that it's already enabled, but I'm not sure. > -1 to hack regrtest Does someone use runtests.sh? We should maybe improve this script instead of regrtest.py. -- ___ Python tr

[issue8565] Always run regrtest.py with -bb

2010-04-29 Thread Florent Xicluna
Florent Xicluna added the comment: +1 to force -bb on buildbots -1 to hack regrtest. IMHO it should be added to ./Makefile.pre.in and PCbuild/rt.bat, like other warning switches ( "-Wd" "-tt" "-3"). -- nosy: +flox type: -> feature request ___ Pyth

[issue8565] Always run regrtest.py with -bb

2010-04-28 Thread STINNER Victor
New submission from STINNER Victor : -bb option helps debug because it detects errors earlier (comparing byte and unicode strings looks strange, it should be a bug). Attached patch re-exec regrtest.py with -bb if -bb was not used. -- components: Tests files: regrtest_bb.patch keywords: