diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-08-26 23:40:57 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-08-30 16:04:43 +0200 |
commit | 0b8a2e281fac366105ba8f5a8f07edb4a84b7531 (patch) | |
tree | ef437cb9acc2f75828d4c94ad72e80d9e0c1e44f /test/html | |
parent | a0a423c3e1283fba0e01dd616d17270256fecf9f (diff) |
Also match indirect leaks
Diffstat (limited to 'test/html')
-rw-r--r-- | test/html/leakfilter.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/html/leakfilter.awk b/test/html/leakfilter.awk index 381ed0a7..84640920 100644 --- a/test/html/leakfilter.awk +++ b/test/html/leakfilter.awk @@ -1,5 +1,5 @@ # Detect beginning of leak message -/^Direct leak/ { msg=msg "\n" $0; inleak=1; next } +/^(Direct|Indirect) leak/ { msg=msg "\n" $0; inleak=1; next } # Ignore anything coming from libfontconfig.so inleak && /libfontconfig.so/ { inleak=0; msg="" } |