Title: [116707] trunk/Tools
- Revision
- 116707
- Author
- [email protected]
- Date
- 2012-05-10 17:06:02 -0700 (Thu, 10 May 2012)
Log Message
nrwt: [chromium] fix path to asan symbolize script
https://bugs.webkit.org/show_bug.cgi?id=86161
Reviewed by Abhishek Arya.
* Scripts/webkitpy/layout_tests/port/chromium.py:
(ChromiumPort._get_crash_log):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (116706 => 116707)
--- trunk/Tools/ChangeLog 2012-05-11 00:03:51 UTC (rev 116706)
+++ trunk/Tools/ChangeLog 2012-05-11 00:06:02 UTC (rev 116707)
@@ -1,3 +1,13 @@
+2012-05-10 Dirk Pranke <[email protected]>
+
+ nrwt: [chromium] fix path to asan symbolize script
+ https://bugs.webkit.org/show_bug.cgi?id=86161
+
+ Reviewed by Abhishek Arya.
+
+ * Scripts/webkitpy/layout_tests/port/chromium.py:
+ (ChromiumPort._get_crash_log):
+
2012-05-10 Lei Zhang <[email protected]>
[chromium] Set Valgrind environment variables for layout tests.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py (116706 => 116707)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2012-05-11 00:03:51 UTC (rev 116706)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2012-05-11 00:06:02 UTC (rev 116707)
@@ -344,7 +344,7 @@
def _get_crash_log(self, name, pid, stdout, stderr, newer_than):
new_stderr = stderr
if stderr and 'AddressSanitizer' in stderr:
- asan_filter_path = self.path_from_chromium_base('third_party', 'asan', 'scripts', 'asan_symbolize.py')
+ asan_filter_path = self.path_from_chromium_base('tools', 'valgrind', 'asan', 'asan_symbolize.py')
if self._filesystem.exists(asan_filter_path):
output = self._executive.run_command([asan_filter_path], input=stderr)
new_stderr = self._executive.run_command(['c++filt'], input=output)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes