From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39844) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWP1p-0000hL-9G for qemu-devel@nongnu.org; Mon, 10 Dec 2018 12:07:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWP1l-00056g-LU for qemu-devel@nongnu.org; Mon, 10 Dec 2018 12:07:33 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:48147) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gWP1g-00052f-Ji for qemu-devel@nongnu.org; Mon, 10 Dec 2018 12:07:26 -0500 Date: Mon, 10 Dec 2018 12:07:20 -0500 From: "Emilio G. Cota" Message-ID: <20181210170720.GA21344@flamenco> References: <20181207204107.GH7395@habkost.net> <20181209222738.GA9292@flamenco> <20181210163601.GA4669@habkost.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181210163601.GA4669@habkost.net> Subject: Re: [Qemu-devel] Help needed: test-qht-par hangs on Travis List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: qemu-devel@nongnu.org On Mon, Dec 10, 2018 at 14:36:01 -0200, Eduardo Habkost wrote: > On Sun, Dec 09, 2018 at 05:27:38PM -0500, Emilio G. Cota wrote: > > Can you try re-running the test, after applying the appended patch? > > (It disables the "resize" thread.) > > It is running right now, here: > https://travis-ci.org/ehabkost/qemu-hacks/jobs/466074591 > > > > > Also, does it reliably hang on Travis, or are these hangs > > intermittent? > > It can be reproduced reliably. qemu.git builds are failing since > Thursday: > https://travis-ci.org/qemu/qemu/builds I see the build you launched timed out. Can you try the following patch (after discarding the previous one)? Let's see if just by disabling the second test we can get the build to move ahead. Thanks, E. --- diff --git a/tests/test-qht-par.c b/tests/test-qht-par.c index d8a83caf5c..a916c91ccb 100644 --- a/tests/test-qht-par.c +++ b/tests/test-qht-par.c @@ -46,7 +46,6 @@ int main(int argc, char *argv[]) if (g_test_quick()) { g_test_add_func("/qht/parallel/2threads-0%updates-1s", test_2th0u1s); - g_test_add_func("/qht/parallel/2threads-20%updates-1s", test_2th20u1s); } else { g_test_add_func("/qht/parallel/2threads-0%updates-5s", test_2th0u5s); g_test_add_func("/qht/parallel/2threads-20%updates-5s", test_2th20u5s);