As mentioned in #917, disabling ASan entirely is not ideal. However, running the full test suite with ASan enabled takes too many resources. This pull request adds a new asan option to the test case header, allowing us to specify specific tests to run with ASan, rather than enabling it across the entire suite.
As mentioned in #917, disabling ASan entirely is not ideal. However, running the full test suite with ASan enabled takes too many resources. This pull request adds a new
asan
option to the test case header, allowing us to specify specific tests to run with ASan, rather than enabling it across the entire suite.Example usage:
This change helps us identify memory issues without the overhead of testing the entire suite with ASan.