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

Side by Side Diff: tools/valgrind/tsan/suppressions.txt

Issue 216004: Added two suppressions for benign races in ICU (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ############################ 1 ############################
2 # Chromium 2 # Chromium
3 3
4 { 4 {
5 bug_15147 5 bug_15147
6 ThreadSanitizer:Race 6 ThreadSanitizer:Race
7 ... 7 ...
8 fun:*URLRequestJobTracker* 8 fun:*URLRequestJobTracker*
9 } 9 }
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 fun:*WatchdogTest_*arm*Test_Test*TestBody* 80 fun:*WatchdogTest_*arm*Test_Test*TestBody*
81 } 81 }
82 82
83 # TODO(timurrrr): bug item 83 # TODO(timurrrr): bug item
84 { 84 {
85 Data race on vfptr in base/thread_unittest 85 Data race on vfptr in base/thread_unittest
86 ThreadSanitizer:Race 86 ThreadSanitizer:Race
87 ... 87 ...
88 fun:*ThreadTest_SleepInsideInit*TestBody* 88 fun:*ThreadTest_SleepInsideInit*TestBody*
89 } 89 }
90
91 ############################
92 # Benign races in ICU
93 {
94 Two writes, same value (ICU gGlobalMutex, gMutexesInUse)
95 ThreadSanitizer:Race
96 fun:umtx_init_4_2
97 }
98
99 {
100 Two writes, same value (ICU gHeapInUse)
101 ThreadSanitizer:Race
102 fun:uprv_malloc_4_2
103 }
OLDNEW
« 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