From 2e5080996196365b68a5e4c5603c444af4431e42 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 1 Feb 2013 16:06:25 +0000 Subject: [PATCH] [ASan] remove debug output from the test llvm-svn: 174188 --- compiler-rt/lib/asan/tests/asan_test.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler-rt/lib/asan/tests/asan_test.cc b/compiler-rt/lib/asan/tests/asan_test.cc index 66276dd..11159c5 100644 --- a/compiler-rt/lib/asan/tests/asan_test.cc +++ b/compiler-rt/lib/asan/tests/asan_test.cc @@ -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); -- 2.7.4