From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52562) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIZ0k-0005mQ-QF for qemu-devel@nongnu.org; Tue, 03 Feb 2015 03:39:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YIZ0i-0003pC-2S for qemu-devel@nongnu.org; Tue, 03 Feb 2015 03:39:06 -0500 Received: from mail-we0-x22b.google.com ([2a00:1450:400c:c03::22b]:38577) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIZ0h-0003p4-Rt for qemu-devel@nongnu.org; Tue, 03 Feb 2015 03:39:04 -0500 Received: by mail-we0-f171.google.com with SMTP id k11so41160825wes.2 for ; Tue, 03 Feb 2015 00:39:03 -0800 (PST) Sender: Paolo Bonzini Message-ID: <54D08923.4060905@redhat.com> Date: Tue, 03 Feb 2015 09:38:59 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1422913238-7280-1-git-send-email-mreitz@redhat.com> <1422913238-7280-3-git-send-email-mreitz@redhat.com> In-Reply-To: <1422913238-7280-3-git-send-email-mreitz@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/3] iotests: Add "wait" functionality to _cleanup_qemu List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz , qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi On 02/02/2015 22:40, Max Reitz wrote: > The qemu process does not always need to be killed, just waiting for it > can be fine, too. This introduces a way to do so. > > Signed-off-by: Max Reitz > --- > tests/qemu-iotests/common.qemu | 12 +++++++++++- > 1 file changed, 11 insertions(+), 1 deletion(-) > > diff --git a/tests/qemu-iotests/common.qemu b/tests/qemu-iotests/common.qemu > index 8e618b5..4e1996c 100644 > --- a/tests/qemu-iotests/common.qemu > +++ b/tests/qemu-iotests/common.qemu > @@ -187,13 +187,23 @@ function _launch_qemu() > > > # Silenty kills the QEMU process > +# > +# If $wait is set to anything other than the empty string, the process will not > +# be killed but only waited for, and any output will be forwarded to stdout. If > +# $wait is empty, the process will be killed and all output will be suppressed. > function _cleanup_qemu() > { > # QEMU_PID[], QEMU_IN[], QEMU_OUT[] all use same indices > for i in "${!QEMU_OUT[@]}" > do > - kill -KILL ${QEMU_PID[$i]} 2>/dev/null > + if [ -z "${wait}" ]; then > + kill -KILL ${QEMU_PID[$i]} 2>/dev/null > + fi > wait ${QEMU_PID[$i]} 2>/dev/null # silent kill > + if [ -n "${wait}" ]; then > + cat <&${QEMU_OUT[$i]} | _filter_testdir | _filter_qemu \ > + | _filter_qemu_io | _filter_qmp > + fi > rm -f "${QEMU_FIFO_IN}_${i}" "${QEMU_FIFO_OUT}_${i}" > eval "exec ${QEMU_IN[$i]}<&-" # close file descriptors > eval "exec ${QEMU_OUT[$i]}<&-" > Reviewed-by: Paolo Bonzini