The port object is missing unit_tests_results_path
authorabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 9 Apr 2012 04:04:22 +0000 (04:04 +0000)
committerabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 9 Apr 2012 04:04:22 +0000 (04:04 +0000)
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@113554 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/Scripts/webkitpy/common/config/ports.py

index b56233f..f4ba208 100644 (file)
@@ -1,3 +1,15 @@
+2012-04-08  Adam Barth  <abarth@webkit.org>
+
+        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  <paroga@webkit.org>
 
         [CMake] Cleanup WTF include directories
index 8ddfa28..c086238 100644 (file)
@@ -115,6 +115,9 @@ class DeprecatedPort(object):
     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"