From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS54825 145.40.68.0/24 X-Spam-Status: No, score=-3.4 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_MED, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 15E601F452 for ; Wed, 15 Nov 2023 13:25:57 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=H5UifrJl; dkim-atps=neutral Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by ams.source.kernel.org (Postfix) with ESMTP id 9B342B8164F; Wed, 15 Nov 2023 13:25:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7E73C433C7; Wed, 15 Nov 2023 13:25:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1700054755; bh=6XTgBJ7cyRg4+uBKOG3FwGrlRymiOjAsDkWFS1EEKxk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=H5UifrJlPv2f+SgPrHfegcSXwOJ+2pSUDz+BROmEAVK/Ek3wB+sRnSTwv3Le9wWUF oYz5Kezw83PPbk20vVhHobfYXrqDNNqh2dmeroYXUuxP/wTZzVXoEicNECIVfiFeOm olY5bxKJu5V6IxMvxKKdw+UvRUjuF+ocxIwC5kkg= Date: Wed, 15 Nov 2023 08:25:53 -0500 From: Konstantin Ryabitsev To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [PATCH] cindex: fix test when missing time(1) executable Message-ID: <20231115-almond-muskrat-from-hyperborea-b56abd@nitro> References: <20231114-idealistic-marvellous-dove-dd143e@nitro> <20231114221653.M550291@dcvr> <20231114-prompt-sage-bobcat-0e6bec@nitro> <20231114224657.M270072@dcvr> <20231114-accelerated-myrtle-fulmar-2ea0df@nitro> <20231114234620.M78107@dcvr> <20231115055549.M979749@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20231115055549.M979749@dcvr> List-Id: On Wed, Nov 15, 2023 at 05:55:49AM +0000, Eric Wong wrote: > Eric Wong wrote: > > +++ b/t/cindex.t > > @@ -210,7 +210,7 @@ EOM > > my $cmd = [ qw(-cindex -u --all --associate -d), "$tmp/ext", > > '-I', $basic->{inboxdir} ]; > > $cidx_out = $cidx_err = ''; > > - ok(run_script($cmd, $env, $opt), 'associate w/o search'); > > + ok(run_script($cmd, $env, undef), 'associate w/o search'); > > like($cidx_err, qr/W: \Q$basic->{inboxdir}\E not indexed for search/, > > 'non-Xapian-enabled inbox noted'); > > } > > Yeah, using this on your new VM showed the problem right away: Yes, I can confirm that this hang is now gone. \o/ All the tests succeed now with the latest master. Thanks, as always! -K