-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github/test: Run tests with address sanitizer
We have lots of cgo interaction here so better to check things fully. This also requires manually checking for leaks, so add support for this.
- Loading branch information
Showing
4 changed files
with
87 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
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,31 @@ | ||
// Package pam provides a wrapper for the PAM application API. | ||
package pam | ||
|
||
/* | ||
#ifdef __SANITIZE_ADDRESS__ | ||
#include <sanitizer/lsan_interface.h> | ||
#endif | ||
static inline void | ||
maybe_do_leak_check (void) | ||
{ | ||
#ifdef __SANITIZE_ADDRESS__ | ||
__lsan_do_leak_check(); | ||
#endif | ||
} | ||
*/ | ||
import "C" | ||
|
||
import ( | ||
"os" | ||
"runtime" | ||
"time" | ||
) | ||
|
||
func maybeDoLeakCheck() { | ||
runtime.GC() | ||
time.Sleep(time.Millisecond * 20) | ||
if os.Getenv("GO_PAM_SKIP_LEAK_CHECK") == "" { | ||
C.maybe_do_leak_check() | ||
} | ||
} |