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

Side by Side Diff: build/sanitizers/tsan_suppressions.cc

Issue 1508133002: Remove suppressions for crbug.com/345245 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file contains the default suppressions for ThreadSanitizer. 5 // This file contains the default suppressions for ThreadSanitizer.
6 // You can also pass additional suppressions via TSAN_OPTIONS: 6 // You can also pass additional suppressions via TSAN_OPTIONS:
7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to 7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to
8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
9 // for more info. 9 // for more info.
10 10
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "race:CommandLine::GetSwitchValueASCII\n" 179 "race:CommandLine::GetSwitchValueASCII\n"
180 180
181 // http://crbug.com/338675 181 // http://crbug.com/338675
182 "race:blink::s_platform\n" 182 "race:blink::s_platform\n"
183 "race:content::" 183 "race:content::"
184 "RendererWebKitPlatformSupportImpl::~RendererWebKitPlatformSupportImpl\n" 184 "RendererWebKitPlatformSupportImpl::~RendererWebKitPlatformSupportImpl\n"
185 185
186 // http://crbug.com/345240 186 // http://crbug.com/345240
187 "race:WTF::s_shutdown\n" 187 "race:WTF::s_shutdown\n"
188 188
189 // http://crbug.com/345245
190 "race:jingle_glue::JingleThreadWrapper::~JingleThreadWrapper\n"
191 "race:webrtc::voe::Channel::UpdatePacketDelay\n"
192 "race:webrtc::voe::Channel::GetDelayEstimate\n"
193 "race:webrtc::VCMCodecDataBase::DeregisterReceiveCodec\n"
194 "race:webrtc::GainControlImpl::set_stream_analog_level\n"
195
196 // http://crbug.com/345618 189 // http://crbug.com/345618
197 "race:WebCore::AudioDestinationNode::render\n" 190 "race:WebCore::AudioDestinationNode::render\n"
198 191
199 // http://crbug.com/345624 192 // http://crbug.com/345624
200 "race:media::DataSource::set_host\n" 193 "race:media::DataSource::set_host\n"
201 194
202 // http://crbug.com/347534 195 // http://crbug.com/347534
203 "race:v8::internal::V8::TearDown\n" 196 "race:v8::internal::V8::TearDown\n"
204 197
205 // http://crbug.com/347538 198 // http://crbug.com/347538
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 // https://crbug.com/454655 281 // https://crbug.com/454655
289 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" 282 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n"
290 283
291 // https://crbug.com/539315 284 // https://crbug.com/539315
292 "race:MojoCreateMessagePipe\n" 285 "race:MojoCreateMessagePipe\n"
293 286
294 // End of suppressions. 287 // End of suppressions.
295 ; // Please keep this semicolon. 288 ; // Please keep this semicolon.
296 289
297 #endif // THREAD_SANITIZER 290 #endif // THREAD_SANITIZER
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