Commit 5bd67532 authored by Victor Gomes's avatar Victor Gomes Committed by V8 LUCI CQ

[tools] Port testrunner/testproc/filter.py to PY3

Bug: chromium:1245634
Change-Id: I48eb590fa8c75fe2eded6b85dab6680efb751fd0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3199873
Commit-Queue: Victor Gomes <victorgomes@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Auto-Submit: Victor Gomes <victorgomes@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77193}
parent 47e71508
......@@ -70,7 +70,7 @@ class NameFilterProc(base.TestProcFilter):
else:
self._exact_matches[suitename][path] = True
for s, globs in self._globs.iteritems():
for s, globs in list(self._globs.items()):
if not globs or '*' in globs:
self._globs[s] = ['*']
......
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