mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 21461a83c51b72bcff82476c1b79a26a194e7bab
This commit is contained in:
parent
ea206034ad
commit
f96f9a1b78
61 changed files with 1372 additions and 376 deletions
|
@ -6,6 +6,7 @@ import logging
|
|||
import os
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
browser_specific_args = {
|
||||
"firefox": ["--install-browser"]
|
||||
|
@ -38,8 +39,7 @@ def main(product, commit_range, wpt_args):
|
|||
)
|
||||
logger.addHandler(handler)
|
||||
|
||||
child = subprocess.Popen(['python', './wpt', 'manifest-download'])
|
||||
child.wait()
|
||||
subprocess.call(['python', './wpt', 'manifest-download'])
|
||||
|
||||
if commit_range:
|
||||
logger.info(
|
||||
|
@ -65,7 +65,9 @@ def main(product, commit_range, wpt_args):
|
|||
|
||||
logger.info("Executing command: %s" % " ".join(command))
|
||||
|
||||
subprocess.check_call(command)
|
||||
retcode = subprocess.call(command)
|
||||
if retcode != 0:
|
||||
sys.exit(retcode)
|
||||
|
||||
wptreport = find_wptreport(wpt_args)
|
||||
if wptreport:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue