From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS24940 159.69.0.0/16 X-Spam-Status: No, score=-3.2 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (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 216641F9F3 for ; Tue, 26 Oct 2021 18:43:15 +0000 (UTC) Date: Tue, 26 Oct 2021 20:43:12 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=t-8ch.de; s=mail; t=1635273792; bh=yFnGXu6mNAnckFaCjsJ9KkzqSNrVU5f14gFUyPzYMHA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=o85sp4El5Qm1m86DBXZgGUnDm7JI1WcjW+Tr+OoRWwtQbW0MFfTvZsd0nKlReOBvI 67X2KXukTU0aQzNnvgdBGB970/xRL4rsMCNTDI4r6QXgm36hLaA47ha0ZWpPeQHdec H14JkGjJ0iiJCfVnRtETPOyCCnKxuk9Tcj061UxI= From: Thomas =?utf-8?Q?Wei=C3=9Fschuh?= To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [PATCH] t/index-git-times: support non-master default branch Message-ID: References: <20211025222453.252181-1-thomas@t-8ch.de> <20211025225822.GA28875@dcvr> <20211026052815.GA13265@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20211026052815.GA13265@dcvr> Jabber-ID: thomas@t-8ch.de X-Accept: text/plain, text/html;q=0.2, text/*;q=0.1 X-Accept-Language: en-us, en;q=0.8, de-de;q=0.7, de;q=0.6 List-Id: On 2021-10-26 05:28+0000, Eric Wong wrote: > Thomas Weißschuh wrote: > > On 2021-10-25 16:58-0600, Eric Wong wrote: > > > Thanks, pushed as 9f3fb207. It looks like there's several > > > other tests broken with non-master being the default. Can we > > > expect fixes for those, too? Thanks again. > > > > Which tests are failing for you? > > t/edit.t > t/indexlevels-mirror.t > t/indexlevels-mirror-v1.t > t/convert-compact.t > t/multi-mid.t > t/feed.t > > I was testing with --global, since that's what I expect if users > are going to change their default branch. This is also what I am using. > $ git config --global init.defaultBranch foo > $ make check-run I only tried make check/test. Let's see if I can reproduce those. > > The only failures I still see are in t/lei-q-remote-import.t which is unrelated > > to the git branch and some more that fail only during parallel test execution. > > > > In t/lei-q-remote-import.t it seems the search results are not memoized to the > > local store. (See attachment) > > Thanks, I'll check out lei-q-remote-import.t separately. > That could be related to SMP or slow/fast storage. > Any details you can share about CPU core count, speeds > or storage speeds, or CPU scheduler, CONFIG_HZ? CPU: Model name: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz CPU family: 6 Model: 140 Thread(s) per core: 2 Core(s) per socket: 4 Socket(s): 1 Stepping: 1 CPU max MHz: 4700,0000 CPU min MHz: 400,0000 Storage: Samsung EVO 970 (with plenty of memory cache) CONFIG_HZ: 300 Thomas