From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtJHu-0006zR-TR for qemu-devel@nongnu.org; Tue, 25 Nov 2014 11:48:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtJHl-0003HB-S8 for qemu-devel@nongnu.org; Tue, 25 Nov 2014 11:48:26 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:43473) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtJHl-0003Gt-IL for qemu-devel@nongnu.org; Tue, 25 Nov 2014 11:48:17 -0500 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 25 Nov 2014 16:48:15 -0000 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id A30331B08040 for ; Tue, 25 Nov 2014 16:48:27 +0000 (GMT) Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by b06cxnps3074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sAPGmCgS15991258 for ; Tue, 25 Nov 2014 16:48:12 GMT Received: from d06av11.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sAPGmCMT027336 for ; Tue, 25 Nov 2014 09:48:12 -0700 Date: Tue, 25 Nov 2014 17:48:10 +0100 From: Michael Mueller Message-ID: <20141125174810.5a3ea19a@bee> In-Reply-To: <1416910178-5088-1-git-send-email-mreitz@redhat.com> References: <1416910178-5088-1-git-send-email-mreitz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 0/3] iotests: Fix test 039 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz Cc: Kevin Wolf , Mao Chuan Li , Fam Zheng , qemu-devel@nongnu.org, Stefan Hajnoczi On Tue, 25 Nov 2014 11:09:35 +0100 Max Reitz wrote: > Test 039 used to fail because qemu-io -c abort may generate core dumps > even with ulimit -c 0 (and the output then contains "(core dumped)"). > Fix this by adding an option to the "abort" command which allows > specifying a signal number to raise(). Using SIGKILL for example does > not result in a core dump, but it still badly crashes qemu-io (as > desired). > > I am sending this series because we need all tests to work before adding > the check-block target to "make check" (which we will hopefully do > soon). > > > Max Reitz (3): > qemu-io: Let -c abort raise any signal > iotests: Filter for "Killed" in qemu-io output > iotests: Fix test 039 > > qemu-io-cmds.c | 59 ++++++++++++++++++++++++++++++++++++++-- > tests/qemu-iotests/039 | 12 ++++---- > tests/qemu-iotests/039.out | 6 ++-- > tests/qemu-iotests/common.filter | 2 +- > 4 files changed, 67 insertions(+), 12 deletions(-) > Hi Max, thanks a lot for picking this up to make our poor circumvention obsolete. Michael