mirror of
https://github.com/ceph/ceph
synced 2025-01-03 01:22:53 +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>
19 lines
437 B
YAML
19 lines
437 B
YAML
# see http://tracker.ceph.com/issues/20360 and http://tracker.ceph.com/issues/18126
|
|
os_type: centos
|
|
|
|
overrides:
|
|
install:
|
|
ceph:
|
|
flavor: notcmalloc
|
|
debuginfo: true
|
|
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]
|