Commit 31d48df1 by Jamie Madill Committed by Commit Bot

restricted trace tests: Fix script.

This script was not parsing the trace list properly and was running no tests. Bug: angleproject:5811 Change-Id: I925bc16ac476823ca2f850d4a9e208b9bb5deb62 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2810805Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 6a606231
......@@ -364,7 +364,8 @@ def main():
skia_gold_temp_dir, gold_properties)
gold_session = gold_session_manager.GetSkiaGoldSession(keys)
for test in tests['traces']:
traces = [trace.split(' ')[0] for trace in tests['traces']]
for test in traces:
# Apply test filter if present.
if args.isolated_script_test_filter:
......
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