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: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 2C3C71F406; Tue, 14 Nov 2023 23:46:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1700005580; bh=M1xibea9+3oxOPAVIH2+KHacmS4yiosbNlMKknZN164=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Fb7hIW9LIeucEbeL5ODvtMWRVUITXFemX65e3b9fAyhjxO+GjNpHIeC0RVl/M+zl9 Pqy+fFB9xVu4pZSgpGXy2CXNjSYOzY7zO2Pk8KiJgNcMZU/SfIO5c3rHKobBkAyhH4 q316KmmKg4f3xvV88bpRdbb9IX6ux/VcUzVMB4gE= Date: Tue, 14 Nov 2023 23:46:20 +0000 From: Eric Wong To: Konstantin Ryabitsev Cc: meta@public-inbox.org Subject: Re: t/cindex.t "associate w/o search" test hangs for me Message-ID: <20231114234620.M78107@dcvr> 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> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20231114-accelerated-myrtle-fulmar-2ea0df@nitro> List-Id: Konstantin Ryabitsev wrote: > On Tue, Nov 14, 2023 at 10:46:57PM +0000, Eric Wong wrote: > > > I can't do +E because that's not available to me under CentOS7 (I can't wait > > > until we move on, but just when we think the yak is fully shaved, we find more > > > clumps of thick fur we hadn't considered). Is the output of the regular "lsof > > > -p" helpful at all? > > > > Sure. > > Sent privately. My, that's a lot of pipes... I should've told you to try this debug patch earlier, but this might help... (and our test suite should really be able to watch messages like this while capturing) diff --git a/t/cindex.t b/t/cindex.t index 60711492..e582acbf 100644 --- a/t/cindex.t +++ 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'); } The like() test will fail with the above change, of course; but maybe something else is amiss on your system and showing stderr will help. FWIW, I can't reproduce the problem on my CentOS7 VM.