Issue #21907: Improved the batch scripts provided for building Python.

The user-facing scripts in PCbuild have been updated to be easier to use
and the buildbot scripts in Tools\buildbot have been updated to use the
user-facing scripts in PCbuild wherever possible.
This commit is contained in:
Zachary Ware 2014-07-07 13:39:59 -05:00
parent b132069ea4
commit e12fa65744
17 changed files with 230 additions and 133 deletions

View file

@ -48,7 +48,11 @@ def main(regrtest_args):
args.extend(['-u', 'all,-largefile,-audio,-gui'])
args.extend(regrtest_args)
print(' '.join(args))
os.execv(sys.executable, args)
if sys.platform == 'win32':
from subprocess import call
call(args)
else:
os.execv(sys.executable, args)
if __name__ == '__main__':