]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
valgrind: ignore all leaks for now
authorSage Weil <sage@inktank.com>
Wed, 19 Jun 2013 20:40:30 +0000 (13:40 -0700)
committerSage Weil <sage@inktank.com>
Wed, 19 Jun 2013 20:40:30 +0000 (13:40 -0700)
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

index 6873c4807a68a955f601d98498fd1279eb17f1f4..223f1374fe80f6918dd3d9ce45594a83601136a6 100644 (file)
@@ -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')