Unverified Commit 000fdebf authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] increase valgrind bytes lost limit to 352 (#5429)

parent 9489f878
......@@ -46,7 +46,7 @@ if [[ ${bytes_indirectly_lost} -gt 0 ]]; then
fi
# one error caused by a false positive between valgrind and openmp is allowed
# ==2063== 336 bytes in 1 blocks are possibly lost in loss record 153 of 2,709
# ==2063== 352 bytes in 1 blocks are possibly lost in loss record 153 of 2,709
# ==2063== at 0x483DD99: calloc (in /usr/lib/x86_64-linux-gnu/valgrind/vgpreload_memcheck-amd64-linux.so)
# ==2063== by 0x40149CA: allocate_dtv (dl-tls.c:286)
# ==2063== by 0x40149CA: _dl_allocate_tls (dl-tls.c:532)
......@@ -68,7 +68,7 @@ bytes_possibly_lost=$(
| tr -d ","
)
echo "valgrind found ${bytes_possibly_lost} bytes possibly lost"
if [[ ${bytes_possibly_lost} -gt 336 ]]; then
if [[ ${bytes_possibly_lost} -gt 352 ]]; then
exit -1
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment