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: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, SPF_HELO_NONE,SPF_NONE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id A9F541F461 for ; Mon, 26 Aug 2019 20:50:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726220AbfHZUuO (ORCPT ); Mon, 26 Aug 2019 16:50:14 -0400 Received: from cloud.peff.net ([104.130.231.41]:56456 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1725785AbfHZUuO (ORCPT ); Mon, 26 Aug 2019 16:50:14 -0400 Received: (qmail 8743 invoked by uid 109); 26 Aug 2019 20:50:14 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with SMTP; Mon, 26 Aug 2019 20:50:14 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 24095 invoked by uid 111); 26 Aug 2019 20:51:36 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Mon, 26 Aug 2019 16:51:36 -0400 Authentication-Results: peff.net; auth=none Date: Mon, 26 Aug 2019 16:50:13 -0400 From: Jeff King To: "Theodore Y. Ts'o" Cc: git@vger.kernel.org Subject: Re: Missing file in 2.23 (p5302-pack-index.subtests)? Message-ID: <20190826205012.GB27762@sigill.intra.peff.net> References: <20190818160317.GA13772@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190818160317.GA13772@mit.edu> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Sun, Aug 18, 2019 at 12:03:17PM -0400, Theodore Y. Ts'o wrote: > I was trying to run "make profile" on the master branch (commit > 5fa0f5238b: "Git 2.23") and it died in the > > $(MAKE) PROFILE=GEN perf > > dies with: > > cannot open test-results/p5302-pack-index.subtests: No such file or directory at ./aggregate.perl line 153. > > I presume that's becuase the file t/perf/test-results/p5302-pack-index.subtests is missing? That file should be created by running p5302. If you do: cd t/perf rm -rf test-results ./run p5302-pack-index.sh is it generated? If so, then perhaps something removed it while the perf tests were running. Did you run perhaps run "make clean" simultaneously? -Peff