roc/ci/valgind_clean.sh
Anton-4 c442c8a088
valgrind wrapper (#8454)
This was the only way I could prevent this warning being spammed thousands of times.
2025-11-26 19:38:06 +01:00

4 lines
140 B
Bash
Executable file

#!/usr/bin/env bash
valgrind "$@" 2>&1 | grep -v "Warning: DWARF2 reader: Badly formed extended line op encountered"
exit ${PIPESTATUS[0]}