[ASan] remove debug output from the test
authorAlexey Samsonov <samsonov@google.com>
Fri, 1 Feb 2013 16:06:25 +0000 (16:06 +0000)
committerAlexey Samsonov <samsonov@google.com>
Fri, 1 Feb 2013 16:06:25 +0000 (16:06 +0000)
llvm-svn: 174188

compiler-rt/lib/asan/tests/asan_test.cc

index 66276dd..11159c5 100644 (file)
@@ -383,9 +383,7 @@ TEST(AddressSanitizer, ReallocTest) {
   free(ptr);
   // Realloc pointer returned by malloc(0).
   int *ptr2 = Ident((int*)malloc(0));
-  fprintf(stderr, "Malloc(0): %p\n", ptr2);
   ptr2 = Ident((int*)realloc(ptr2, sizeof(*ptr2)));
-  fprintf(stderr, "Realloc(0, 4): %p\n", ptr2);
   *ptr2 = 42;
   EXPECT_EQ(42, *ptr2);
   free(ptr2);