From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:55648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnXyL-0000CT-3M for qemu-devel@nongnu.org; Wed, 18 Jan 2012 11:02:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnXyG-0007xN-4j for qemu-devel@nongnu.org; Wed, 18 Jan 2012 11:02:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47205) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnXyF-0007xB-Qn for qemu-devel@nongnu.org; Wed, 18 Jan 2012 11:02:44 -0500 Message-ID: <4F16ED0E.9060003@redhat.com> Date: Wed, 18 Jan 2012 17:02:22 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1326479558-3016-1-git-send-email-aliguori@us.ibm.com> <1326479558-3016-3-git-send-email-aliguori@us.ibm.com> <4F16EC9F.9020503@redhat.com> In-Reply-To: <4F16EC9F.9020503@redhat.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/6] qtest: add C version of test infrastructure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: Anthony Liguori , qemu-devel@nongnu.org, Stefan Hajnoczi On 01/18/2012 05:00 PM, Kevin Wolf wrote: >> > + do { >> > + sleep(1); > This is the line that takes the greatest part of the time for make > check-qtest. Can we use some shorter delay if it's required at all? You can use a client socket, listen before spawning QEMU and accept afterwards. It's what I did in the Python version. Paolo