Changeset 205472 in webkit


Ignore:
Timestamp:
Sep 6, 2016 2:48:18 AM (8 years ago)
Author:
pvollan@apple.com
Message:

[Win] Crash logs have incorrect symbols.
https://bugs.webkit.org/show_bug.cgi?id=161603

Reviewed by Darin Adler.

Add build path to _NT_SYMBOL_PATH environment variable.

  • Scripts/webkitpy/port/win.py:

(WinPort.setup_crash_log_saving):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r205462 r205472  
     12016-09-06  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Crash logs have incorrect symbols.
     4        https://bugs.webkit.org/show_bug.cgi?id=161603
     5
     6        Reviewed by Darin Adler.
     7
     8        Add build path to _NT_SYMBOL_PATH environment variable.
     9
     10        * Scripts/webkitpy/port/win.py:
     11        (WinPort.setup_crash_log_saving):
     12
    1132016-08-31  Filip Pizlo  <fpizlo@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r204477 r205472  
    300300            _log.warning("The _NT_SYMBOL_PATH environment variable is not set. Using Microsoft Symbol Server.")
    301301            os.environ['_NT_SYMBOL_PATH'] = 'SRV*http://msdl.microsoft.com/download/symbols'
     302
     303        # Add build path to symbol path
     304        os.environ['_NT_SYMBOL_PATH'] += ";" + self._build_path()
     305
    302306        ntsd_path = self._ntsd_location()
    303307        if not ntsd_path:
Note: See TracChangeset for help on using the changeset viewer.