diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-07 22:32:39 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-07 22:32:39 +0200 |
commit | 609eb749f4782e5f618d557af147d8371d257fe8 (patch) | |
tree | a1dec389113a223c384e395489ba8212322e675f /src/valgrind.sh | |
parent | test/lib: log process readiness only once (diff) | |
download | cimple-609eb749f4782e5f618d557af147d8371d257fe8.tar.gz cimple-609eb749f4782e5f618d557af147d8371d257fe8.zip |
valgrind: quiet mode
Diffstat (limited to 'src/valgrind.sh')
-rwxr-xr-x | src/valgrind.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/valgrind.sh b/src/valgrind.sh index 088c393..6ba7088 100755 --- a/src/valgrind.sh +++ b/src/valgrind.sh @@ -8,7 +8,7 @@ if ! command -v valgrind &> /dev/null; then exit 1 fi -exec valgrind \ +exec valgrind -q \ --leak-check=full \ --show-leak-kinds=all \ --track-origins=yes \ |