diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-10-29 18:40:45 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-10-29 18:40:45 +0100 |
commit | 7d1a88305f83b7ef6b21772b9911299287d4d3df (patch) | |
tree | 9aab50e201dfdc7b92d2b11e7634c243851dc040 /contrib | |
parent | 6d4c780b1e6ae95061e53f6d54a52031fe600860 (diff) |
fix leaks, bump test execution time under valgrind
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/uncrustify_precommit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/uncrustify_precommit b/contrib/uncrustify_precommit index c10bc2673..faffcec9c 100755 --- a/contrib/uncrustify_precommit +++ b/contrib/uncrustify_precommit @@ -4,7 +4,7 @@ exec 1>&2 RET=0 -changed=$(git diff --cached --name-only | grep -v mustach | grep -v templating/test./) +changed=$(git diff --cached --name-only | grep -v mustach | grep -v templating/test./ | grep -v valgrind.h) crustified="" for f in $changed; |