[compiler-rt] r182087 - tsan: comment out debug output in test

Dmitry Vyukov dvyukov at google.com
Fri May 17 04:54:37 PDT 2013


Author: dvyukov
Date: Fri May 17 06:54:37 2013
New Revision: 182087

URL: http://llvm.org/viewvc/llvm-project?rev=182087&view=rev
Log:
tsan: comment out debug output in test

Modified:
    compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_allocator_test.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_allocator_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_allocator_test.cc?rev=182087&r1=182086&r2=182087&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_allocator_test.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_allocator_test.cc Fri May 17 06:54:37 2013
@@ -198,8 +198,8 @@ void SizeClassAllocatorGetBlockBeginStre
   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);
   }
 





More information about the llvm-commits mailing list