Files
clang-p2996/compiler-rt/test/lsan/TestCases/recoverable_leak_check.cpp
Vitaly Buka 090edd376e [lsan] Disable symbolization in test
With internal symbolizer leaking pointers can be
copied into alive memory used by symbolizer.
2024-03-13 17:28:32 -07:00

34 lines
857 B
C++

// Test for on-demand leak checking.
// RUN: %clangxx_lsan %s -o %t
// RUN: %env_lsan_opts=use_stacks=0:use_registers=0:symbolize=0 %run %t foo 2>&1 | FileCheck %s
// RUN: %env_lsan_opts=use_stacks=0:use_registers=0:symbolize=0 %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: darwin
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sanitizer/lsan_interface.h>
void *p;
int main(int argc, char *argv[]) {
p = malloc(23);
assert(__lsan_do_recoverable_leak_check() == 0);
fprintf(stderr, "Test alloc: %p.\n", malloc(1337));
// CHECK: Test alloc:
assert(__lsan_do_recoverable_leak_check() == 1);
// CHECK: SUMMARY: {{.*}}Sanitizer: 1337 byte
// Test that we correctly reset chunk tags.
p = 0;
assert(__lsan_do_recoverable_leak_check() == 1);
// CHECK: SUMMARY: {{.*}}Sanitizer: 1360 byte
_exit(0);
}