mirror of
https://github.com/servo/servo.git
synced 2025-06-23 00:24:35 +01:00
20 lines
505 B
Python
20 lines
505 B
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 run
|
|
import sys
|
|
|
|
paths = {"include_manifest": run.wpt_path("include.ini"),
|
|
"config": run.wpt_path("config.ini")}
|
|
|
|
|
|
def run_tests(**kwargs):
|
|
return run.run_tests(paths=paths, **kwargs)
|
|
|
|
|
|
def main():
|
|
return run.main(paths)
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(0 if main() else 1)
|