RESOLVED FIXED 37487
Make new-run-webkit-test PrettyPatch failure reporting more awesome
https://bugs.webkit.org/show_bug.cgi?id=37487
Summary Make new-run-webkit-test PrettyPatch failure reporting more awesome
Eric Seidel (no email)
Reported 2010-04-12 21:29:50 PDT
Make new-run-webkit-test PrettyPatch failure reporting more awesome
Attachments
Patch (2.94 KB, patch)
2010-04-12 21:32 PDT, Eric Seidel (no email)
abarth: review+
Eric Seidel (no email)
Comment 1 2010-04-12 21:32:23 PDT
Adam Barth
Comment 2 2010-04-12 21:36:34 PDT
Comment on attachment 53222 [details] Patch ok. missing a space
Eric Seidel (no email)
Comment 3 2010-04-12 21:38:45 PDT
Dirk Pranke
Comment 4 2010-04-12 21:42:58 PDT
Comment on attachment 53222 [details] Patch > command = ["ruby", "-I", pretty_patch_path, prettify_path, diff_path] > try: > return self._executive.run_command(command) > except OSError, e: > - # If they system is missing ruby just log the error, and stop trying. > + # If the system is missing ruby log the error and stop trying. > _pretty_patch_available = False > - return "Failed to run PrettyPatch: %s" % e > - except Executive.ScriptError, e: > - # If they system is missing ruby just log the error, and stop trying. > + _log.error("Failed to run PrettyPatch (%s): %s" % (command, e)) > + return self._pretty_patch_error_html > + except ScriptError, e: > + # If ruby failed to run for some reason, log the command output and stop trying. > _pretty_patch_available = False > - return "Failed to run PrettyPatch: %s" % e > + _log.error("Failed to run PrettyPatch (%s):\n%s" % (command, e.message_with_output())) > + return self._pretty_patch_error_html > Why does this routine have to catch either a ScriptError or an OSError? It seems like maybe the run_command() semantics aren't clear?
Eric Seidel (no email)
Comment 5 2010-04-12 21:46:28 PDT
They mean different things. OSError means you're missing the file you tried to run. ScriptError means it returned non-zero.
Note You need to log in before you can comment on or make changes to this bug.