Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: tools/valgrind/tsan_analyze.py

Issue 3135043: Workaround bug 53198 - don't read non-race ThreadSanitizer warnings on Window... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/tsan_analyze.py
===================================================================
--- tools/valgrind/tsan_analyze.py (revision 57181)
+++ tools/valgrind/tsan_analyze.py (working copy)
@@ -9,6 +9,7 @@
import gdb_helper
+import common
import logging
import optparse
import os
@@ -123,7 +124,8 @@
if re.search(TsanAnalyzer.TSAN_RACE_DESCRIPTION, self.line_):
tmp.extend(self.ReadRaceSection())
self.reports.append(tmp)
- if re.search(TsanAnalyzer.TSAN_WARNING_DESCRIPTION, self.line_):
+ if (re.search(TsanAnalyzer.TSAN_WARNING_DESCRIPTION, self.line_) and
+ not common.IsWindows()): # workaround for http://crbug.com/53198
tmp.extend(self.ReadWarningSection())
self.reports.append(tmp)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698