David Bolen <db3l....@gmail.com> added the comment:

I've been investigating issues with test failures on my Windows buildbots 
seemingly not showing up in the master's web interface (but just showing 
warnings), and it appears likely due to this change.

For example, test_urllib (a test problem from issue 36948) was failing but only 
appeared as a warning (the first such case on my Win10 builder for example is 
https://buildbot.python.org/all/#/builders/3/builds/2661).

This change appears to force the exit code of test.bat to be successful (0) 
regardless of the results of the test run, thus obscuring any test failures 
from a parent process such as the buildbot.  As an aside, it also looks like 
any failures along the new arm32ssh branch would be obscured, assuming that the 
ssh operation would otherwise have propagated the remote exit code.

I think just leaving off the exit code (so just "exit /b") should propagate the 
rt.bat result properly.  Or, a goto to a label at the end of the file and 
letting it exit naturally would mimic the prior behavior.

----------
nosy: +db3l

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

Reply via email to