Skip to content

Commit

Permalink
GHA: lsan.suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Jun 10, 2021
1 parent 5dacc85 commit 3457c91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ jobs:
-Wno-unused-parameter -Wno-unused-function -Wno-deprecated-copy
- IMAGE: noetic-source
NAME: asan
DOCKER_RUN_OPTS: "-e PRELOAD=libasan.so.5"
DOCKER_RUN_OPTS: >-
-e PRELOAD=libasan.so.5
-e LSAN_OPTIONS="suppressions=$PWD/.github/workflows/lsan.suppressions"
TARGET_CMAKE_ARGS: -DCMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer -O1"

env:
CATKIN_LINT: true
UNDERLAY: /root/ws_moveit/install
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lsan.suppressions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
leak:class_loader

2 comments on commit 3457c91

@v4hn
Copy link
Contributor

@v4hn v4hn commented on 3457c91 Jun 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What exactly is suppressed here? anything in the class_loader namespace? Anything that matches the substring?
Just curious as I never used suppressions.

@rhaschke
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.