aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/valgrind.supp
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-02-08 13:04:30 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-02-08 18:44:35 +0000
commit59df64a049bd02bddd105b18630d1f645d62ec91 (patch)
treedf623a69b8abcd3eac4bdffd8014ef81b850d8fa /tools/valgrind.supp
parentf750fbcb699fff2bdd264969515fc4045a1248be (diff)
Update valgrind suppressions
It appears that the top-level function named has switched to just "main" Change-Id: I33a18a8d433867e759312d09e5b258f934f495a4 Reviewed-on: https://skia-review.googlesource.com/8194 Reviewed-by: Mike Klein <mtklein@chromium.org> Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'tools/valgrind.supp')
-rw-r--r--tools/valgrind.supp18
1 files changed, 3 insertions, 15 deletions
diff --git a/tools/valgrind.supp b/tools/valgrind.supp
index 1399c3e8b4..601b3a7d0f 100644
--- a/tools/valgrind.supp
+++ b/tools/valgrind.supp
@@ -1,26 +1,14 @@
# Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
-# Intentional thread / memory leak in DM.
+# Intentional thread / memory leak in DM and nanbench.
{
- dm_keepalive_thread_leak
+ nanobench_and_dm_keepalive_thread_leak
Memcheck:Leak
match-leak-kinds: possible
...
fun:_ZN8SkThreadC1EPFvPvES0_
...
- fun:_Z7dm_mainv
- ...
-}
-
-# Intentional thread / memory leak in nanobench.
-{
- nanobench_keepalive_thread_leak
- Memcheck:Leak
- match-leak-kinds: possible
- ...
- fun:_ZN8SkThreadC1EPFvPvES0_
- ...
- fun:_Z14nanobench_mainv
+ fun:main
...
}