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

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

Issue 1460053003: SimpleCache: Fix race condition in simple_index_file_unittest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove the suppression 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 | net/disk_cache/simple/simple_index_file_unittest.cc » ('j') | 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 137
138 // http://crbug.com/285242 138 // http://crbug.com/285242
139 "race:media::PulseAudioOutputStream::SetVolume\n" 139 "race:media::PulseAudioOutputStream::SetVolume\n"
140 140
141 // http://crbug.com/308590 141 // http://crbug.com/308590
142 "race:CustomThreadWatcher::~CustomThreadWatcher\n" 142 "race:CustomThreadWatcher::~CustomThreadWatcher\n"
143 143
144 // http://crbug.com/310851 144 // http://crbug.com/310851
145 "race:net::ProxyResolverV8Tracing::Job::~Job\n" 145 "race:net::ProxyResolverV8Tracing::Job::~Job\n"
146 146
147 // http://crbug.com/313726
148 "race:CallbackWasCalled\n"
149
150 // http://crbug.com/327330 147 // http://crbug.com/327330
151 "race:PrepareTextureMailbox\n" 148 "race:PrepareTextureMailbox\n"
152 "race:cc::LayerTreeHost::PaintLayerContents\n" 149 "race:cc::LayerTreeHost::PaintLayerContents\n"
153 150
154 // http://crbug.com/476529 151 // http://crbug.com/476529
155 "deadlock:cc::VideoLayerImpl::WillDraw\n" 152 "deadlock:cc::VideoLayerImpl::WillDraw\n"
156 153
157 // http://crbug.com/328826 154 // http://crbug.com/328826
158 "race:gLCDOrder\n" 155 "race:gLCDOrder\n"
159 "race:gLCDOrientation\n" 156 "race:gLCDOrientation\n"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 // https://crbug.com/454655 297 // https://crbug.com/454655
301 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" 298 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n"
302 299
303 // https://crbug.com/539315 300 // https://crbug.com/539315
304 "race:MojoCreateMessagePipe\n" 301 "race:MojoCreateMessagePipe\n"
305 302
306 // End of suppressions. 303 // End of suppressions.
307 ; // Please keep this semicolon. 304 ; // Please keep this semicolon.
308 305
309 #endif // THREAD_SANITIZER 306 #endif // THREAD_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | net/disk_cache/simple/simple_index_file_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698