New submission from STINNER Victor:

After my commit d2aff607199a24182714404777c80c7f180a35af of bpo-30283, 
test_regrtest failed with "multiple errors occurred; run in verbose mode for 
details" on "x86 Windows XP VS9.0 2.7" buildbot, but tests are not re-run in 
verbose mode on this buildbot :-(

See http://bugs.python.org/issue30283#msg293312

The "test" step of the buildbot runs directly the PC/VS9.0/rt.bat command which 
only pass -j2 option to regrtest.py, but not -uall -rwW.

Other Windows buildbots run Tools/buildbot/test.bat which pass -uall -rwW to 
regrtest.py.

I see different options:

* Modify PC/VS9.0/rt.bat to pass extra options: I dislike this option, it 
changes the behaviour, some people may rely on the current behaviour (and 
Python 2.7 is now considered as super stable)

* Copy Tools/buildbot/test.bat to PC/VS9.0/test.bat and modify the copy to run 
PC/VS9.0/rt.bat. I dislike this option, it duplicates code.

* Modify Tools/buildbot/test.bat to add an option to specify the pass to rt.bat 
and then modify the buildbot config to use test.bat instead of rt.bat but also 
use the new option to pass PC/VS9.0/rt.bat (or just "PC/VS9.0/" depending how 
the option is designed).

@Zach: I request your advice on this issue ;-)

----------
components: Tests, Windows
keywords: buildbot
messages: 293313
nosy: haypo, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Tests of Python 2.7 VS9.0 buildbots must be run with -uall -rwW options
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30313>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to