tsan: comment out debug output in test

llvm-svn: 170186
This commit is contained in:
Dmitry Vyukov 2012-12-14 10:12:14 +00:00
parent 714accd917
commit ed6d54368c
1 changed files with 3 additions and 3 deletions

View File

@ -219,9 +219,9 @@ TEST(SanitizerCommon, SizeClassAllocator32MapUnmapCallback) {
a->TestOnlyUnmap(); a->TestOnlyUnmap();
EXPECT_EQ(TestMapUnmapCallback::unmap_count, 2); // The whole thing + alloc. EXPECT_EQ(TestMapUnmapCallback::unmap_count, 2); // The whole thing + alloc.
delete a; delete a;
fprintf(stderr, "Map: %d Unmap: %d\n", // fprintf(stderr, "Map: %d Unmap: %d\n",
TestMapUnmapCallback::map_count, // TestMapUnmapCallback::map_count,
TestMapUnmapCallback::unmap_count); // TestMapUnmapCallback::unmap_count);
} }
TEST(SanitizerCommon, LargeMmapAllocatorMapUnmapCallback) { TEST(SanitizerCommon, LargeMmapAllocatorMapUnmapCallback) {