Log Message
webkitpy test fix on Mac after r164244.
It's somewhat crazy that we're trying to run unittests for Windows on Mac but whatever. * Scripts/webkitpy/port/win.py: (WinPort._ntsd_location):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (164246 => 164247)
--- trunk/Tools/ChangeLog 2014-02-17 20:58:15 UTC (rev 164246)
+++ trunk/Tools/ChangeLog 2014-02-17 21:40:09 UTC (rev 164247)
@@ -1,3 +1,12 @@
+2014-02-17 Ryosuke Niwa <[email protected]>
+
+ webkitpy test fix on Mac after r164244.
+
+ It's somewhat crazy that we're trying to run unittests for Windows on Mac but whatever.
+
+ * Scripts/webkitpy/port/win.py:
+ (WinPort._ntsd_location):
+
2014-02-17 Brent Fulgham <[email protected]>
[Win] Fall back to Windows symbol servers when necessary
Modified: trunk/Tools/Scripts/webkitpy/port/win.py (164246 => 164247)
--- trunk/Tools/Scripts/webkitpy/port/win.py 2014-02-17 20:58:15 UTC (rev 164246)
+++ trunk/Tools/Scripts/webkitpy/port/win.py 2014-02-17 21:40:09 UTC (rev 164247)
@@ -138,6 +138,8 @@
return map(self._webkit_baseline_path, test_fallback_names)
def _ntsd_location(self):
+ if 'PROGRAMFILES' not in os.environ:
+ return None
possible_paths = [self._filesystem.join(os.environ['PROGRAMFILES'], "Windows Kits", "8.0", "Debuggers", "x86", "ntsd.exe"),
self._filesystem.join(os.environ['PROGRAMFILES'], "Windows Kits", "8.0", "Debuggers", "x64", "ntsd.exe"),
self._filesystem.join(os.environ['PROGRAMFILES'], "Debugging Tools for Windows (x86)", "ntsd.exe"),
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
