diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2013-05-17 11:54:37 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2013-05-17 11:54:37 +0000 |
| commit | 69c544d857ad7dbc0521d861bd90c7a124de8b0e (patch) | |
| tree | 863123ee93301c9ed36a3ea25febb5e4156c1039 /compiler-rt/lib | |
| parent | 2057a2b86f96561e2745191bfffd2dc356ed14da (diff) | |
| download | bcm5719-llvm-69c544d857ad7dbc0521d861bd90c7a124de8b0e.tar.gz bcm5719-llvm-69c544d857ad7dbc0521d861bd90c7a124de8b0e.zip | |
tsan: comment out debug output in test
llvm-svn: 182087
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc index d30058adda7..5825dc7bb33 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc @@ -198,8 +198,8 @@ void SizeClassAllocatorGetBlockBeginStress() { for (size_t i = 0; i <= G8 / size; i++) { void *x = cache.Allocate(a, max_size_class); void *beg = a->GetBlockBegin(x); - if ((i & (i - 1)) == 0) - fprintf(stderr, "[%zd] %p %p\n", i, x, beg); + // if ((i & (i - 1)) == 0) + // fprintf(stderr, "[%zd] %p %p\n", i, x, beg); EXPECT_EQ(x, beg); } |

