mirror of
https://github.com/rtbrick/bngblaster.git
synced 2024-05-06 15:54:57 +00:00
13 lines
306 B
Bash
Executable File
13 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! which valgrind >/dev/null; then
|
|
echo "`basename $0`: valgrind not found." >&2
|
|
exit 1
|
|
fi
|
|
|
|
valgrind --tool=memcheck --trace-children=yes \
|
|
--track-fds=yes --num-callers=32 \
|
|
--memcheck:leak-check=yes --memcheck:leak-resolution=high \
|
|
--show-reachable=yes \
|
|
"$@" 2>&1 | tee vg.log
|