RESOLVED FIXED 47466
new-run-webkit-tests: handle missing ruby/prettypatch better
https://bugs.webkit.org/show_bug.cgi?id=47466
Summary new-run-webkit-tests: handle missing ruby/prettypatch better
Dirk Pranke
Reported 2010-10-09 23:45:33 PDT
new-run-webkit-tests: handle missing ruby/prettypatch better
Attachments
Patch (10.75 KB, patch)
2010-10-09 23:48 PDT, Dirk Pranke
no flags
Patch (10.71 KB, patch)
2010-10-12 22:01 PDT, Dirk Pranke
eric: review+
Dirk Pranke
Comment 1 2010-10-09 23:48:59 PDT
Tony Chang
Comment 2 2010-10-11 17:50:25 PDT
Comment on attachment 70389 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=70389&action=review > WebKitTools/Scripts/webkitpy/layout_tests/port/base.py:131 > + def check_pretty_patch(self, override_step=None, logging=True): What are the parameters for? override_step doesn't seem to be used and logging is not set by the single caller of this function. > WebKitTools/Scripts/webkitpy/layout_tests/port/base.py:673 > + command = ["ruby", "-I", os.path.dirname(self._pretty_patch_path), > + self._pretty_patch_path, diff_path] Nit: Use a tuple instead of a list since we don't plan on mutating this. > WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py:122 > + if not self._pretty_patch_available: > + _log.error('') Why an empty error? It looks like check_pretty_patch already logs a bunch of stuff, so do we really need this?
Dirk Pranke
Comment 3 2010-10-11 17:59:53 PDT
(In reply to comment #2) > (From update of attachment 70389 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=70389&action=review > > > WebKitTools/Scripts/webkitpy/layout_tests/port/base.py:131 > > + def check_pretty_patch(self, override_step=None, logging=True): > > What are the parameters for? override_step doesn't seem to be used and logging is not set by the single caller of this function. > This was from chromium.py:_check_file_exists() as a template, but you're right that neither argument is needed. Good catch. > > WebKitTools/Scripts/webkitpy/layout_tests/port/base.py:673 > > + command = ["ruby", "-I", os.path.dirname(self._pretty_patch_path), > > + self._pretty_patch_path, diff_path] > > Nit: Use a tuple instead of a list since we don't plan on mutating this. > Done. > > WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py:122 > > + if not self._pretty_patch_available: > > + _log.error('') > > Why an empty error? It looks like check_pretty_patch already logs a bunch of stuff, so do we really need this? It makes the output slightly more legible by putting whitespace in between the up-front checks and the output of the next phase of the run.
Dirk Pranke
Comment 4 2010-10-12 21:49:47 PDT
(In reply to comment #3) > > > WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py:122 > > > + if not self._pretty_patch_available: > > > + _log.error('') > > > > Why an empty error? It looks like check_pretty_patch already logs a bunch of stuff, so do we really need this? > > It makes the output slightly more legible by putting whitespace in between the up-front checks and the output of the next phase of the run. Hm. I was thinking of a different code path. It would be better if the blank line was next to the other output, so I've moved it there.
Dirk Pranke
Comment 5 2010-10-12 22:01:52 PDT
Eric Seidel (no email)
Comment 6 2010-10-13 06:55:38 PDT
Comment on attachment 70582 [details] Patch Seems we want to do the same magic for wdiff. Generally looks fine to me.
Dirk Pranke
Comment 7 2010-10-14 20:02:36 PDT
Note You need to log in before you can comment on or make changes to this bug.