Title: [113554] trunk/Tools
- Revision
- 113554
- Author
- [email protected]
- Date
- 2012-04-08 21:04:22 -0700 (Sun, 08 Apr 2012)
Log Message
The port object is missing unit_tests_results_path
https://bugs.webkit.org/show_bug.cgi?id=83448
Unreviewed.
This is causing the cr-linux-ews to throw an exception.
* Scripts/webkitpy/common/config/ports.py:
(DeprecatedPort.unit_tests_results_path):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (113553 => 113554)
--- trunk/Tools/ChangeLog 2012-04-08 20:50:50 UTC (rev 113553)
+++ trunk/Tools/ChangeLog 2012-04-09 04:04:22 UTC (rev 113554)
@@ -1,3 +1,15 @@
+2012-04-08 Adam Barth <[email protected]>
+
+ The port object is missing unit_tests_results_path
+ https://bugs.webkit.org/show_bug.cgi?id=83448
+
+ Unreviewed.
+
+ This is causing the cr-linux-ews to throw an exception.
+
+ * Scripts/webkitpy/common/config/ports.py:
+ (DeprecatedPort.unit_tests_results_path):
+
2012-04-07 Patrick Gansterer <[email protected]>
[CMake] Cleanup WTF include directories
Modified: trunk/Tools/Scripts/webkitpy/common/config/ports.py (113553 => 113554)
--- trunk/Tools/Scripts/webkitpy/common/config/ports.py 2012-04-08 20:50:50 UTC (rev 113553)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py 2012-04-09 04:04:22 UTC (rev 113554)
@@ -115,7 +115,10 @@
def layout_tests_results_path(self):
return os.path.join(self.results_directory, "full_results.json")
+ def unit_tests_results_path(self):
+ return os.path.join(self.results_directory, "webkit_unit_tests_output.xml")
+
class MacPort(DeprecatedPort):
port_flag_name = "mac"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes