Title: [192431] trunk/Tools
Revision
192431
Author
bfulg...@apple.com
Date
2015-11-13 10:08:15 -0800 (Fri, 13 Nov 2015)

Log Message

[Win] Unreviewed test fix.

* Scripts/webkitpy/port/win.py:
(WinPort.results_directory): Our 'results_directory' should be an absolute path (even when not
using Cygwin), but should be in DOS format for non-Cygwin clients.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (192430 => 192431)


--- trunk/Tools/ChangeLog	2015-11-13 17:56:23 UTC (rev 192430)
+++ trunk/Tools/ChangeLog	2015-11-13 18:08:15 UTC (rev 192431)
@@ -1,3 +1,11 @@
+2015-11-13  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] Unreviewed test fix.
+
+        * Scripts/webkitpy/port/win.py:
+        (WinPort.results_directory): Our 'results_directory' should be an absolute path (even when not
+        using Cygwin), but should be in DOS format for non-Cygwin clients.
+
 2015-11-12  Daniel Bates  <daba...@apple.com>
 
         Add my apple.com email address to contributors.json

Modified: trunk/Tools/Scripts/webkitpy/port/win.py (192430 => 192431)


--- trunk/Tools/Scripts/webkitpy/port/win.py	2015-11-13 17:56:23 UTC (rev 192430)
+++ trunk/Tools/Scripts/webkitpy/port/win.py	2015-11-13 18:08:15 UTC (rev 192431)
@@ -75,7 +75,9 @@
         """Absolute path to the place to store the test results (uses --results-directory)."""
         if not self._results_directory:
             option_val = self.get_option('results_directory') or self.default_results_directory()
-            self._results_directory = option_val
+            self._results_directory = self._filesystem.abspath(option_val)
+            if sys.platform == 'cygwin':
+                self._results_directory = cygpath(self._results_directory)   
             self._abs_results_directory = self._filesystem.abspath(option_val)
         return self._results_directory
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to