From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 630A21F406; Fri, 11 May 2018 19:38:01 +0000 (UTC) Date: Fri, 11 May 2018 19:38:01 +0000 From: Eric Wong To: Konstantin Ryabitsev Cc: meta@public-inbox.org Subject: Re: [PATCH 0/4] test fixes for latest CPAN modules Message-ID: <20180511193801.GA1940@dcvr> References: <20180511192018.6432-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: List-Id: Konstantin Ryabitsev wrote: > I can confirm that v2mirror.t is the only test that's still failing now. > If you need help troubleshooting that, I'll be happy to help. Feel free > to jump into #korg on linuxnet (or #kernel.org on freenode). I have to run out in a bit, and prefer to keep as much as possible over email for archival purposes. Which Xapian (both Perl bindings and libxapian*.so) are you running? Can you try flipping the parallel flag and perhaps provide "strace -f" output with/without parallel. (strace -f prove -lv t/v2mirror.t) --- a/t/v2mirror.t +++ b/t/v2mirror.t @@ -38,7 +38,7 @@ ok($ibx, 'inbox found'); $ibx->{version} = 2; my $v2w = PublicInbox::V2Writable->new($ibx, 1); ok $v2w, 'v2w loaded'; -$v2w->{parallel} = 0; +$v2w->{parallel} = 1; my $mime = PublicInbox::MIME->new(<<''); From: Me To: You Thanks for the feedback!