mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
81 lines
2.3 KiB
Python
81 lines
2.3 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import multiprocessing
|
|
import os
|
|
import sys
|
|
import mozlog
|
|
import grouping_formatter
|
|
|
|
here = os.path.split(__file__)[0]
|
|
servo_root = os.path.abspath(os.path.join(here, "..", ".."))
|
|
|
|
|
|
def wpt_path(*args):
|
|
return os.path.join(here, *args)
|
|
|
|
|
|
def servo_path(*args):
|
|
return os.path.join(servo_root, *args)
|
|
|
|
# Imports
|
|
sys.path.append(wpt_path("web-platform-tests", "tools", "wptrunner"))
|
|
from wptrunner import wptrunner, wptcommandline
|
|
|
|
|
|
def run_tests(paths=None, **kwargs):
|
|
if paths is None:
|
|
paths = {}
|
|
set_defaults(paths, kwargs)
|
|
|
|
mozlog.commandline.log_formatters["servo"] = \
|
|
(grouping_formatter.GroupingFormatter, "A grouping output formatter")
|
|
|
|
use_mach_logging = False
|
|
if len(kwargs["test_list"]) == 1:
|
|
file_ext = os.path.splitext(kwargs["test_list"][0])[1].lower()
|
|
if file_ext in [".htm", ".html", ".js", ".xhtml", ".xht", ".py"]:
|
|
use_mach_logging = True
|
|
|
|
if use_mach_logging:
|
|
wptrunner.setup_logging(kwargs, {"mach": sys.stdout})
|
|
else:
|
|
wptrunner.setup_logging(kwargs, {"servo": sys.stdout})
|
|
|
|
success = wptrunner.run_tests(**kwargs)
|
|
return 0 if success else 1
|
|
|
|
|
|
def set_defaults(paths, kwargs):
|
|
if kwargs["product"] is None:
|
|
kwargs["product"] = "servo"
|
|
|
|
if kwargs["config"] is None and "config" in paths:
|
|
kwargs["config"] = paths["config"]
|
|
|
|
if kwargs["include_manifest"] is None and "include_manifest" in paths:
|
|
kwargs["include_manifest"] = paths["include_manifest"]
|
|
|
|
if kwargs["binary"] is None:
|
|
bin_dir = "release" if kwargs["release"] else "debug"
|
|
bin_name = "servo"
|
|
if sys.platform == "win32":
|
|
bin_name += ".exe"
|
|
bin_path = servo_path("target", bin_dir, bin_name)
|
|
|
|
kwargs["binary"] = bin_path
|
|
kwargs["webdriver_binary"] = bin_path
|
|
|
|
if kwargs["processes"] is None:
|
|
kwargs["processes"] = multiprocessing.cpu_count()
|
|
|
|
kwargs["user_stylesheets"].append(servo_path("resources", "ahem.css"))
|
|
|
|
wptcommandline.check_args(kwargs)
|
|
|
|
|
|
def main(paths=None):
|
|
parser = wptcommandline.create_parser()
|
|
kwargs = vars(parser.parse_args())
|
|
return run_tests(paths, **kwargs)
|