From 867e5b44ca451a558c791e1404f1961674d9dc4d Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 19 Jun 2013 13:40:30 -0700 Subject: [PATCH] valgrind: ignore all leaks for now Most of them are coming from the messenger code paths, and the changes to fix them have only just reached master, and will likely not be backported to cuttlefish. Any substantial (non-shutdown) leak we encounter will need to be identified and backported manually. --- teuthology/task/ceph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 6873c4807..223f1374f 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -215,7 +215,7 @@ def valgrind_post(ctx, config): continue (file, kind) = line.split(':') log.debug('file %s kind %s', file, kind) - if file.find('mds') >= 0 and kind.find('Lost') > 0: + if kind.find('Lost') > 0: continue log.error('saw valgrind issue %s in %s', kind, file) valgrind_exception = Exception('saw valgrind issues') -- 2.47.3