From: Dmitry Vyukov Date: Fri, 14 Dec 2012 10:12:14 +0000 (+0000) Subject: tsan: comment out debug output in test X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed6d54368cbdd9db44026a136bb1e3c2e29da62f;p=platform%2Fupstream%2Fllvm.git tsan: comment out debug output in test llvm-svn: 170186 --- 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 81d300c..e1bfe57 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc @@ -219,9 +219,9 @@ TEST(SanitizerCommon, SizeClassAllocator32MapUnmapCallback) { a->TestOnlyUnmap(); EXPECT_EQ(TestMapUnmapCallback::unmap_count, 2); // The whole thing + alloc. delete a; - fprintf(stderr, "Map: %d Unmap: %d\n", - TestMapUnmapCallback::map_count, - TestMapUnmapCallback::unmap_count); + // fprintf(stderr, "Map: %d Unmap: %d\n", + // TestMapUnmapCallback::map_count, + // TestMapUnmapCallback::unmap_count); } TEST(SanitizerCommon, LargeMmapAllocatorMapUnmapCallback) {