ros / class_loader

ROS-independent library for dynamic class (i.e. plugin) introspection and loading from runtime libraries
http://www.ros.org/wiki/class_loader
34 stars 95 forks source link

suppress sanitizer warning about (expected) leak #213

Open comicfans opened 2 weeks ago

comicfans commented 2 weeks ago

to address https://github.com/ros/class_loader/issues/131, this didn't change code, instead it suppress the sanitizer report because we know this leak is expected. this suppression can't be done through runtime suppression file because sanitizer can't do that for dlopen shared libraries https://github.com/google/sanitizers/issues/89 , so better to annotate it.