From 813d96ffdd4625aee594043b67e93c9167b8091e Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 3 Jul 2013 09:59:21 -0700 Subject: [PATCH] ceph: don't check leaks on client.* (i.e., radosgw) ...until we fix them. This way we can see other valgrind issues. --- 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 5ee32152b6..efe058426e 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -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') -- 2.39.5