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-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 64AFD1F5B7 for ; Sun, 26 Jul 2020 19:55:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727962AbgGZTyy (ORCPT ); Sun, 26 Jul 2020 15:54:54 -0400 Received: from injection.crustytoothpaste.net ([192.241.140.119]:40716 "EHLO injection.crustytoothpaste.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726244AbgGZTyv (ORCPT ); Sun, 26 Jul 2020 15:54:51 -0400 Received: from camp.crustytoothpaste.net (unknown [IPv6:2001:470:b978:101:b610:a2f0:36c1:12e3]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by injection.crustytoothpaste.net (Postfix) with ESMTPSA id 1C3A461013; Sun, 26 Jul 2020 19:54:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=crustytoothpaste.net; s=default; t=1595793290; bh=nz4+OtGq3fE7rGU2uzYwanb+xiaiZY8Q9Rnalz28LGI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From:Reply-To: Subject:Date:To:CC:Resent-Date:Resent-From:Resent-To:Resent-Cc: In-Reply-To:References:Content-Type:Content-Disposition; b=RtrsUtWPNPKUqw6XC84oco++Ef0sgCwJytPL5GKdK9+64XCBWTOxtncIYdabIi5rP C3BITYVlctiUvrPK7dmmy2aKbZTkkdSk0OPEz0Tgf6qRTNMGrKeqmi9T8ReMWUZ7UA l5A9Y46kEyILsusy08itwWQM/bC6RrKVqeE9ztn+YHc6aXDAohnusS2yo22jke/bx/ reaV3JGhnoHTdQm9CF1tQCA1wg5jfg4ZAmuVIArQTqeVHoQzZERZHbmLG/ETZaDEN/ 3qa/4UVZeL8JE9lW/3zvm6aPaTcr5IIpXRvLruG9L1afqNGGyCNC7ssKZ2O50Yovlf ZKbSHqpg/GxUyHgXplYJ88bqY0LXlMCUd7VhQsEx83IZFKLWZbnONDReJkpkBVxGvq 6L25G1Kixn9zxxJGa+QBw0YbLpskJwH1oLyQrUIwXYZCofsanuAnNM7UHsre7PpxE7 +WcMI2040cO7kYTjw+ECkE9gMLdOIO/H+ZXLUC/ynZBZvYE9YV2 From: "brian m. carlson" To: Cc: Eric Sunshine Subject: [PATCH v4 20/39] t8011: make hash size independent Date: Sun, 26 Jul 2020 19:54:05 +0000 Message-Id: <20200726195424.626969-21-sandals@crustytoothpaste.net> X-Mailer: git-send-email 2.28.0.rc2.160.gd0b3904b262 In-Reply-To: <20200726195424.626969-1-sandals@crustytoothpaste.net> References: <20200726195424.626969-1-sandals@crustytoothpaste.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Allow lines which start with either a 40- or 64-character hex object ID, to allow for both SHA-1 and SHA-256. Signed-off-by: brian m. carlson --- t/t8011-blame-split-file.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t8011-blame-split-file.sh b/t/t8011-blame-split-file.sh index 831125047b..8a4626d496 100755 --- a/t/t8011-blame-split-file.sh +++ b/t/t8011-blame-split-file.sh @@ -54,7 +54,7 @@ test_expect_success 'setup simulated porcelain' ' cat >read-porcelain.pl <<-\EOF my $field = shift; while (<>) { - if (/^[0-9a-f]{40} /) { + if (/^[0-9a-f]{40,64} /) { flush(); $hash = $&; } elsif (/^$field (.*)/) {