+2014-02-17 Ryosuke Niwa <rniwa@webkit.org>
+
+ 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 <bfulgham@apple.com>
[Win] Fall back to Windows symbol servers when necessary
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"),