7 lines
106 B
Bash
7 lines
106 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
valgrind --leak-check=full \
|
||
|
--show-leak-kinds=all \
|
||
|
--suppressions=util/valgrind.supp \
|
||
|
$@
|