-
Notifications
You must be signed in to change notification settings - Fork 745
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lsan] Add debug option to "deflake" leaks (#112037)
There are hard to debug leaks which look like false. In general, repeating leak checking should not affect set of leaks significantly, especial `at_exit` leak checking. But if we see significant discrepancy, it may give us a clue for investigation.
- Loading branch information
1 parent
9025202
commit e1cff8b
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Test retries option of lsan. | ||
// RUN: %clang_lsan %s -o %t | ||
// RUN: %env_lsan_opts=use_stacks=0:use_registers=0:symbolize=0 %run %t foo 2>&1 | FileCheck %s --check-prefixes=CHECK,CHECK1 | ||
// RUN: %env_lsan_opts=use_stacks=0:use_registers=0:symbolize=0:tries=12 %run %t 2>&1 | FileCheck %s --check-prefixes=CHECK,CHECK12 | ||
|
||
#include <assert.h> | ||
#include <sanitizer/lsan_interface.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <unistd.h> | ||
|
||
void *p; | ||
|
||
int main(int argc, char *argv[]) { | ||
fprintf(stderr, "Test alloc: %p.\n", malloc(1337)); | ||
// CHECK: Test alloc: | ||
|
||
assert(__lsan_do_recoverable_leak_check() == 1); | ||
// CHECK1-COUNT-1: SUMMARY: {{.*}}Sanitizer: 1337 byte | ||
// CHECK12-COUNT-12: SUMMARY: {{.*}}Sanitizer: 1337 byte | ||
|
||
_exit(0); | ||
} |