-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve rs_port tests and improve memory leak detection for valgrind.
- Loading branch information
Showing
7 changed files
with
98 additions
and
39 deletions.
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
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,39 @@ | ||
{ | ||
Ignore memory leaked from lang_start_internal. | ||
Memcheck:Leak | ||
... | ||
fun:new_inner | ||
... | ||
} | ||
|
||
# Ignore leaks from loaders depenecies for now, we want to debug the port only | ||
{ | ||
Ignore leaks from C Loader. | ||
Memcheck:Leak | ||
... | ||
obj:*/libc_loader*.so | ||
} | ||
{ | ||
Ignore leaks from C Loader depends Clang. | ||
Memcheck:Leak | ||
... | ||
obj:*/libclang-*.so.* | ||
} | ||
{ | ||
Ignore leaks from C Loader depends LLVM. | ||
Memcheck:Leak | ||
... | ||
obj:*/libLLVM-*.so.* | ||
} | ||
{ | ||
Ignore leaks from NodeJS Loader. | ||
Memcheck:Leak | ||
... | ||
obj:*/libnode_loader*.so | ||
} | ||
{ | ||
Ignore leaks from Python Loader depends CPython. | ||
Memcheck:Leak | ||
... | ||
obj:*/libpython*.so.* | ||
} |
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