Skip to content

Commit

Permalink
suppress known memory leak during test run as well
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacolvin0 authored and hkalodner committed Nov 25, 2021
1 parent 854ae0b commit 8e48957
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ jobs:
- run:
name: Test
command: |
./bin/avm_tests -r junit > ${TEST_RESULTS}/arb-avm-cpp.xml
echo 'leak:libtcmalloc' > /tmp/lsan-suppressions
LSAN_OPTIONS=suppressions=/tmp/lsan-suppressions ./bin/avm_tests -r junit > ${TEST_RESULTS}/arb-avm-cpp.xml
lcov --capture --directory . --output-file coverage.info
lcov --remove coverage.info --output-file coverage.info '/usr/*' '*/tests/*' '*/external/*'
lcov --list coverage.info
Expand Down

0 comments on commit 8e48957

Please sign in to comment.