We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Included with clang memory sanitizer fails when running the tests: link to a workflow output (*.yml)
clang
Run tests with memory sanitizer enabled (-fsanitize=memory on clang).
-fsanitize=memory
dev
Clang 9.0.0
Clang 10.0.0
The text was updated successfully, but these errors were encountered:
Update: seems like it's an issue with libc++, as something as simple, as this produces the same error:
libc++
#include <iostream> int main() { std::cout << "\033[0;36msome text" << std::endl; }
Sorry, something went wrong.
The stdlib needs to be instrumented with MSAN as well - in contrast to ASAN/UBSAN.. https://github.com/onqtam/doctest/issues?q=memory+sanitizer
Sorry for a false positive. Thanks for the correction.
No branches or pull requests
Description
Included with
clang
memory sanitizer fails when running the tests: link to a workflow output (*.yml)Steps to reproduce
Run tests with memory sanitizer enabled (
-fsanitize=memory
onclang
).Extra information
dev
branchClang 9.0.0
/Clang 10.0.0
The text was updated successfully, but these errors were encountered: