]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
ceph: don't check leaks on client.* (i.e., radosgw)
authorSage Weil <sage@inktank.com>
Wed, 3 Jul 2013 16:59:21 +0000 (09:59 -0700)
committerSage Weil <sage@inktank.com>
Wed, 3 Jul 2013 16:59:21 +0000 (09:59 -0700)
...until we fix them.  This way we can see other valgrind issues.

teuthology/task/ceph.py

index 5ee32152b6e1075df47e8fb58e1e75208510b045..efe058426ee9b419855acc1bc5a0f593fcaeed6e 100644 (file)
@@ -229,7 +229,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 or file.find('osd') >= 0) and kind.find('Lost') > 0:
+                if (file.find('mds') >= 0 or file.find('osd') >= 0 or file.find('client') >= 0) and kind.find('Lost') > 0:
                     continue
                 log.error('saw valgrind issue %s in %s', kind, file)
                 valgrind_exception = Exception('saw valgrind issues')