mirror of
https://github.com/ceph/ceph
synced 2024-12-20 18:33:44 +00:00
26 lines
612 B
Python
26 lines
612 B
Python
|
import logging
|
||
|
|
||
|
from teuthology import misc as teuthology
|
||
|
|
||
|
log = logging.getLogger(__name__)
|
||
|
|
||
|
def rados(ctx, remote, cmd, wait=True, check_status=False):
|
||
|
testdir = teuthology.get_testdir(ctx)
|
||
|
log.info("rados %s" % ' '.join(cmd))
|
||
|
pre = [
|
||
|
'{tdir}/enable-coredump'.format(tdir=testdir),
|
||
|
'ceph-coverage',
|
||
|
'{tdir}/archive/coverage'.format(tdir=testdir),
|
||
|
'rados',
|
||
|
];
|
||
|
pre.extend(cmd)
|
||
|
proc = remote.run(
|
||
|
args=pre,
|
||
|
check_status=check_status,
|
||
|
wait=wait,
|
||
|
)
|
||
|
if wait:
|
||
|
return proc.exitstatus
|
||
|
else:
|
||
|
return proc
|