Skip to content

Commit

Permalink
Update valgrind_suppressions for latest zlib and exclude bench_graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Oct 28, 2020
1 parent 2cacba3 commit 3057c48
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 2 additions & 0 deletions valgrind_existing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ SKIP_BINARIES+=("$(ls ./"${TEST_BINARIES_TARGET}"release/test_ir4* || true )")
SKIP_BINARIES+=("$(ls ./"${TEST_BINARIES_TARGET}"release/*imageflow_helpers* || true )")
SKIP_BINARIES+=("$(ls ./"${TEST_BINARIES_TARGET}"release/*imageflow_riapi* || true )")
SKIP_BINARIES+=("$(ls ./"${TEST_BINARIES_TARGET}"release/*imageflow_types* || true )")
SKIP_BINARIES+=("$(ls ./"${TEST_BINARIES_TARGET}"release/bench_graphics* || true )")

function join_by { local IFS="$1"; shift; echo "$*"; }
SKIP_BINARIES_STR="$(join_by " " "${SKIP_BINARIES[@]}")"
SKIP_BINARIES_STR=" $SKIP_BINARIES_STR "
Expand Down
13 changes: 12 additions & 1 deletion valgrind_suppressions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,15 @@
fun:deflate_fast
fun:deflate
...
}
}

{
See http://zlib.net/zlib_faq.html#faq36
Memcheck:Cond
fun:slide_hash
fun:fill_window
fun:deflate_fast
fun:deflate
fun:png_compress_IDAT
...
}

0 comments on commit 3057c48

Please sign in to comment.