When using sanitizers with gcc one can provide a list of exceptions/suppressions to deal with false positives and such.
the suppression file format is poorly documented.
Each suppression is of the form
name_of_check:path_or_name
What are the valid values for name_of_check
?
SUMMARY: AddressSanitizer: stack-use-after-scope deps/include/yaml-cpp/node/impl.h:291 in YAML::Node::begin()
, do I useYAML::Node::begin
as the name? clearly not, as it does not suppress it. – Quin