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=-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 [IPv6:2604:1380:4601:e00::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id A14FB1F406 for ; Tue, 14 Nov 2023 21:50:59 +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=hMot9Kvr; 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 0C015B81673; Tue, 14 Nov 2023 21:50:57 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 41400C433C7; Tue, 14 Nov 2023 21:50:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1699998656; bh=ZqhExbm4F1LyRjfioa29Vnafe7GhEQhhmioXFG1gaGk=; h=Date:From:To:Subject:From; b=hMot9Kvrghvu7p524/iC9MSK7lGD2anJkwWxDln1jtJh0R0LMMBoPT45KnTmi4Byp aaRsokOUo5+Vp4SZd+OHkFdV3n3p52GEndxyThjKVLKxrk2S/RH5lIwYgU92Y2GRkG IUT3xwleccglfHZx8FERZJuOOC8KvDMnI4ikIuYQ= Date: Tue, 14 Nov 2023 16:50:55 -0500 From: Konstantin Ryabitsev To: meta@public-inbox.org Subject: t/cindex.t "associate w/o search" test hangs for me Message-ID: <20231114-idealistic-marvellous-dove-dd143e@nitro> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit List-Id: Eric: I'm trying to have tests pass on CentOS7 with the current master and I'm apparently not able to get past the "associate w/o search" test. When I run `prove -bvw t/cindex.t` I get to: ok 76 - xcpdb compact and then it just sits there. If I look at the process table, I can see that the next test is attempting to run, but it just hangs forever. This is what pstree shows: └─prove,4431 -w /usr/local/bin/prove -bvw t/cindex.t └─-cindex -u --al,4432 ├─cidx shard[0],4646 └─cidx shard[1],4647 Anything I can do to figure out why this is happening? -K