mirror of
https://github.com/ceph/ceph
synced 2024-12-21 19:02:10 +00:00
960f00071f
Valgrind runs itself on forked children, and does its cleanup when they complete, and this is slow... slow enough that it frequently makes the test time out. Valgrind let's you ignore child *processes* that you exec, but I can't find a way to skip forked children in the same address space. Work around this by skip this validation when running under valgrind. Fixes: http://tracker.ceph.com/issues/20602 Signed-off-by: Sage Weil <sage@redhat.com>
18 lines
415 B
YAML
18 lines
415 B
YAML
# see http://tracker.ceph.com/issues/20360 and http://tracker.ceph.com/issues/18126
|
|
os_type: centos
|
|
|
|
overrides:
|
|
install:
|
|
ceph:
|
|
flavor: notcmalloc
|
|
ceph:
|
|
conf:
|
|
global:
|
|
osd heartbeat grace: 40
|
|
mon:
|
|
mon osd crush smoke test: false
|
|
valgrind:
|
|
mon: [--tool=memcheck, --leak-check=full, --show-reachable=yes]
|
|
osd: [--tool=memcheck]
|
|
mds: [--tool=memcheck]
|