Commit 6ef8f848 by Jamie Madill Committed by Commit Bot

Trace Gold Tests: Fix filter name.

Was incorrectly checking the individual test name instead of the full name including the test suite. Bug: angleproject:5299 Change-Id: I60df15bf1a748ce24d54f56b48ffe6eaca2ba54b Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2519396Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent ca8b58d7
......@@ -371,7 +371,7 @@ def main():
# Apply test filter if present.
if args.isolated_script_test_filter:
full_name = 'angle_restricted_trace_gold_tests.%s' % test
if not fnmatch.fnmatch(test, args.isolated_script_test_filter):
if not fnmatch.fnmatch(full_name, args.isolated_script_test_filter):
continue
with common.temporary_file() as tempfile_path:
......
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