commit | f2b024db6777a904d986c68a21ba0bc41f956f6e | [log] [tgz] |
---|---|---|
author | csmartdalton <csmartdalton@google.com> | Wed Nov 09 13:25:23 2016 -0800 |
committer | Commit bot <commit-bot@chromium.org> | Wed Nov 09 13:25:24 2016 -0800 |
tree | 4be4d6c6eead649f199f945bbeb56409ada95f61 | |
parent | 072a198656b80f8f713aaa8d917436a58190e439 [diff] [blame] |
skpbench: filter out junk spewed by Pixel C driver BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2488043003 Review-Url: https://codereview.chromium.org/2488043003
diff --git a/tools/skpbench/_hardware.py b/tools/skpbench/_hardware.py index 525c4c1..de8848d 100644 --- a/tools/skpbench/_hardware.py +++ b/tools/skpbench/_hardware.py
@@ -29,6 +29,10 @@ def __exit__(self, exception_type, exception_value, traceback): pass + def filter_line(self, line): + """Returns False if the provided output line can be suppressed.""" + return True + def sanity_check(self): """Raises a HardwareException if any hardware state is not as expected.""" pass