Commit 6372a56f by Jamie Madill Committed by Commit Bot

Gold trace tests: Add logging for filter misses.

The prior fix still didn't work. Add logging to debug why. Bug: angleproject:5299 Change-Id: I758cfa87066e1cdf4a5d1289c030943e9bded58d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2519400Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 4989667a
...@@ -372,6 +372,8 @@ def main(): ...@@ -372,6 +372,8 @@ def main():
if args.isolated_script_test_filter: if args.isolated_script_test_filter:
full_name = 'angle_restricted_trace_gold_tests.%s' % test full_name = 'angle_restricted_trace_gold_tests.%s' % test
if not fnmatch.fnmatch(full_name, args.isolated_script_test_filter): if not fnmatch.fnmatch(full_name, args.isolated_script_test_filter):
print('Skipping test %s because it does not match filter %s' %
(full_name, args.isolated_script_test_filter))
continue continue
with common.temporary_file() as tempfile_path: 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