LGTM with comments.
https://chromiumcodereview.appspot.com/17260002/diff/15001/test/webkit/testcfg.py
File test/webkit/testcfg.py (right):
https://chromiumcodereview.appspot.com/17260002/diff/15001/test/webkit/testcfg.py#newcode52
test/webkit/testcfg.py:52: if dirname == exclude:
I guess this works, but it doesn't fit with the exclusion scheme used
right above. How about:
exclude = 'resources'
if exclude in dirs:
dirs.remove(exclude)
That way we won't even visit the 'resources' directory.
Or you could modify/extend the existing filter:
for excluded in [x for x in dirs if x.startswith('.') or x ==
'resources']:
dirs.remove(excluded)
https://chromiumcodereview.appspot.com/17260002/diff/15001/test/webkit/testcfg.py#newcode122
test/webkit/testcfg.py:122: if line.startswith("#") or not line.strip():
continue
Don't you need to have this line in ActIterator too to filter out the
copyright headers?
https://chromiumcodereview.appspot.com/17260002/
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.