]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
ceph: ignore ceph-osd leaks for now :(
authorSage Weil <sage@inktank.com>
Mon, 10 Jun 2013 17:45:05 +0000 (10:45 -0700)
committerSage Weil <sage@inktank.com>
Mon, 10 Jun 2013 17:45:10 +0000 (10:45 -0700)
teuthology/task/ceph.py

index 2412d6bbf75a8d85306ba892750e58d5f8272f9c..dfa1eafdcf37c676058b30655d0598370d8d075e 100644 (file)
@@ -219,7 +219,7 @@ def valgrind_post(ctx, config):
                     log.error('failed to split line %s', line)
                     raise
                 log.debug('file %s kind %s', file, kind)
-                if file.find('mds') >= 0 and kind.find('Lost') > 0:
+                if (file.find('mds') >= 0 or file.find('osd') >= 0) and kind.find('Lost') > 0:
                     continue
                 log.error('saw valgrind issue %s in %s', kind, file)
                 valgrind_exception = Exception('saw valgrind issues')