From: Sage Weil Date: Wed, 19 Jun 2013 20:40:30 +0000 (-0700) Subject: valgrind: ignore all leaks for now X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=867e5b44ca451a558c791e1404f1961674d9dc4d;p=teuthology.git 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. --- 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')