Commit 6faf9ef3 by Jamie Madill Committed by Commit Bot

infra: Remove unused debug/cpu properties from tests.

These are now configured through mb_config.pyl. We still pass in the properties to the lucicfg helper function set up the waterfall UI. Bug: angleproject:5114 Change-Id: Ib46ab95f5803a166fd2342679afbfcaa6f467c45 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2822233Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent fb3173b9
...@@ -118,8 +118,6 @@ def get_os_from_name(name): ...@@ -118,8 +118,6 @@ def get_os_from_name(name):
# Adds both the CI and Try standalone builders. # Adds both the CI and Try standalone builders.
def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests = False): def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests = False):
properties = { properties = {
"debug": debug,
"target_cpu": cpu,
"builder_group": "angle", "builder_group": "angle",
} }
os = get_os_from_name(name) os = get_os_from_name(name)
...@@ -146,9 +144,6 @@ def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests = ...@@ -146,9 +144,6 @@ def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests =
if not clang: if not clang:
properties["clang"] = False properties["clang"] = False
if uwp:
properties["uwp"] = True
if trace_tests: if trace_tests:
properties["trace_tests"] = True properties["trace_tests"] = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment