Reviewed by Darin Adler.
test_runner2.py can crash due to undefined variable
https://bugs.webkit.org/show_bug.cgi?id=57356
Replace reference to undefined variable with a variable that's actually
defined. AFAICT, there's no way to test this code.
* Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@82329
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-03-29 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Darin Adler.
+
+ test_runner2.py can crash due to undefined variable
+ https://bugs.webkit.org/show_bug.cgi?id=57356
+
+ Replace reference to undefined variable with a variable that's actually
+ defined. AFAICT, there's no way to test this code.
+
+ * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
+
2011-03-29 Tony Chang <tony@chromium.org>
Reviewed by Eric Seidel.
if worker_state.wedged:
# This shouldn't happen if we have our timeouts tuned properly.
- _log.error("%s unwedged", w.name)
+ _log.error("%s unwedged", source)
self._all_results.append(result)
self._update_summary_with_result(self._current_result_summary, result)