diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-02-01 16:06:25 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-02-01 16:06:25 +0000 |
| commit | 2e5080996196365b68a5e4c5603c444af4431e42 (patch) | |
| tree | 1f88859b3dab638ef4739e1e5f624f30b700c83d | |
| parent | 39313b780d094407e12afac9d4d6a543cd33bb79 (diff) | |
| download | bcm5719-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.cc | 2 |
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); |

