diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-21 21:55:59 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-21 21:55:59 +0200 |
| commit | 706b99e3bda688c9adc9a70bb95b96bce1146f57 (patch) | |
| tree | b5acfcf1d9e5cf77676683ad429bc88fe13c89f9 /scripts/gen-report | |
| parent | 452cab52de2107c1ce8c7eb0883ff80bb80ac76b (diff) | |
| download | gran-706b99e3bda688c9adc9a70bb95b96bce1146f57.tar.gz gran-706b99e3bda688c9adc9a70bb95b96bce1146f57.zip | |
check for leaked memory
Diffstat (limited to 'scripts/gen-report')
| -rwxr-xr-x | scripts/gen-report | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/gen-report b/scripts/gen-report index 38e4a47..9b86174 100755 --- a/scripts/gen-report +++ b/scripts/gen-report @@ -13,6 +13,8 @@ shift $((OPTIND - 1)) for p in "$@"; do mkdir -p "reports/${p}" - timeout --foreground 30s valgrind -q --error-exitcode=1 \ + timeout --foreground 30s valgrind -q \ + --leak-check=full \ + --error-exitcode=1 \ "./${BUILD}/${p}" > "reports/${p}/log" done |
