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

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

Issue 993353003: Remove suppression for bug 272987. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 // http://crbug.com/268941 131 // http://crbug.com/268941
132 "race:tracked_objects::ThreadData::tls_index_\n" 132 "race:tracked_objects::ThreadData::tls_index_\n"
133 133
134 // http://crbug.com/270037 134 // http://crbug.com/270037
135 "race:gLibCleanupFunctions\n" 135 "race:gLibCleanupFunctions\n"
136 136
137 // http://crbug.com/272095 137 // http://crbug.com/272095
138 "race:base::g_top_manager\n" 138 "race:base::g_top_manager\n"
139 139
140 // http://crbug.com/272987
141 "race:webrtc::MediaStreamTrack<webrtc::AudioTrackInterface>::set_enabled\n"
142
143 // http://crbug.com/273047 140 // http://crbug.com/273047
144 "race:base::*::g_lazy_tls_ptr\n" 141 "race:base::*::g_lazy_tls_ptr\n"
145 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" 142 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n"
146 143
147 // http://crbug.com/280466 144 // http://crbug.com/280466
148 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" 145 "race:content::WebRtcAudioCapturer::SetCapturerSource\n"
149 146
150 // http://crbug.com/285242 147 // http://crbug.com/285242
151 "race:media::PulseAudioOutputStream::SetVolume\n" 148 "race:media::PulseAudioOutputStream::SetVolume\n"
152 149
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 // https://crbug.com/459429 322 // https://crbug.com/459429
326 "race:randomnessPid\n" 323 "race:randomnessPid\n"
327 324
328 // https://crbug.com/454655 325 // https://crbug.com/454655
329 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" 326 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n"
330 327
331 // End of suppressions. 328 // End of suppressions.
332 ; // Please keep this semicolon. 329 ; // Please keep this semicolon.
333 330
334 #endif // THREAD_SANITIZER 331 #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