From 7c5eed2f909e99707f1c4b0c6383fa1c26cbba78 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Thu, 9 Jun 2011 16:05:08 -0700 Subject: [PATCH] Check daemon exit codes, even when using gcov. --- teuthology/task/ceph.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 98e5a92663e0d..5f9d67aa06066 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -487,17 +487,18 @@ def task(ctx, config): log.info('Shutting down mds daemons...') for id_, proc in mds_daemons.iteritems(): proc.stdin.close() - run.wait(mds_daemons.itervalues()) log.info('Shutting down osd daemons...') for id_, proc in osd_daemons.iteritems(): proc.stdin.close() - run.wait(osd_daemons.itervalues()) log.info('Shutting down mon daemons...') for id_, proc in mon_daemons.iteritems(): proc.stdin.close() - run.wait(mon_daemons.itervalues()) + + run.wait(mds_daemons.itervalues()) + run.wait(osd_daemons.itervalues()) + run.wait(mon_daemons.itervalues()) log.info('Removing uninteresting files...') run.wait( -- 2.39.5