diff options
Diffstat (limited to 'test/lsan/TestCases/use_stacks.cc')
-rw-r--r-- | test/lsan/TestCases/use_stacks.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/lsan/TestCases/use_stacks.cc b/test/lsan/TestCases/use_stacks.cc index 7afcde15c733c..c32af68412606 100644 --- a/test/lsan/TestCases/use_stacks.cc +++ b/test/lsan/TestCases/use_stacks.cc @@ -7,14 +7,15 @@ #include <stdio.h> #include <stdlib.h> +#include "sanitizer_common/print_address.h" int main() { void *stack_var = malloc(1337); - fprintf(stderr, "Test alloc: %p.\n", stack_var); + print_address("Test alloc: ", 1, stack_var); // Do not return from main to prevent the pointer from going out of scope. exit(0); } -// CHECK: Test alloc: [[ADDR:.*]]. +// CHECK: Test alloc: [[ADDR:0x[0-9,a-f]+]] // CHECK: LeakSanitizer: detected memory leaks // CHECK: [[ADDR]] (1337 bytes) // CHECK: SUMMARY: {{(Leak|Address)}}Sanitizer: |