summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2013-02-01 16:06:25 +0000
committerAlexey Samsonov <samsonov@google.com>2013-02-01 16:06:25 +0000
commit2e5080996196365b68a5e4c5603c444af4431e42 (patch)
tree1f88859b3dab638ef4739e1e5f624f30b700c83d
parent39313b780d094407e12afac9d4d6a543cd33bb79 (diff)
downloadbcm5719-llvm-2e5080996196365b68a5e4c5603c444af4431e42.tar.gz
bcm5719-llvm-2e5080996196365b68a5e4c5603c444af4431e42.zip
[ASan] remove debug output from the test
llvm-svn: 174188
-rw-r--r--compiler-rt/lib/asan/tests/asan_test.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_test.cc b/compiler-rt/lib/asan/tests/asan_test.cc
index 66276ddfbc7..11159c5d7a9 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);
OpenPOWER on IntegriCloud