Message ID | 20200525195930.309665-45-sandals@crustytoothpaste.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show
Return-Path: <SRS0=RB3M=7H=vger.kernel.org=git-owner@kernel.org> Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1EFB6912 for <patchwork-git@patchwork.kernel.org>; Mon, 25 May 2020 20:00:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F18FE20776 for <patchwork-git@patchwork.kernel.org>; Mon, 25 May 2020 20:00:11 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (3072-bit key) header.d=crustytoothpaste.net header.i=@crustytoothpaste.net header.b="yA64YthG" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390494AbgEYUAK (ORCPT <rfc822;patchwork-git@patchwork.kernel.org>); Mon, 25 May 2020 16:00:10 -0400 Received: from injection.crustytoothpaste.net ([192.241.140.119]:38722 "EHLO injection.crustytoothpaste.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390398AbgEYUAD (ORCPT <rfc822;git@vger.kernel.org>); Mon, 25 May 2020 16:00:03 -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 DC92360D21; Mon, 25 May 2020 20:00:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=crustytoothpaste.net; s=default; t=1590436802; bh=73juDmT7AedVAFtoq2gbukr8T2H8y8stjGC9wi2bUQQ=; 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=yA64YthGx2mmnTxrt/gPUQijBpuXkFUfWL7pahvAMA89ZNngYG3qzVVx0tyUjXpvx BGDqYd6xmCmf28PjPCL6Qp+CWI95ipfmdq9kCMsBAbDmRp/8htyxmaKl9bIvE+r7BW lfcuaREGuQmNDl7S//MwheYn1KfcMXHClju7OOeE3K3QMTLCeIUFa39ErmXSog17wI W5DEjxqW0y2fsDuQTCxKGv39PIgEqiC58fEou5tueZZeKF9SUR2Od7SCNStYAWHb9m FzDSDtDwAZLBt9ugFcxb6jTZOQNgQzgvINWsk4aXTIwIHwkbKqH2J1PSWrBm7ennfk ERbEO5cIsNdgLfcLxy/e50k1uHs20o2Ak90pLf2J+4oU2EPTKwtqi/TYhowtEajoaV icja2s4ZEzoSjqK+zdTCmhYOB0OgnPALlFgeVEQdgOK299t4+wQwHEC6zMVVZ9BgCe +160TZhgt33xr9jn1q8Mct/sCWZnrCrTqeCFEeogUeKXsaynRAv From: "brian m. carlson" <sandals@crustytoothpaste.net> To: <git@vger.kernel.org> Cc: =?utf-8?q?Martin_=C3=85gren?= <martin.agren@gmail.com> Subject: [PATCH v2 44/44] remote-testgit: adapt for object-format Date: Mon, 25 May 2020 19:59:30 +0000 Message-Id: <20200525195930.309665-45-sandals@crustytoothpaste.net> X-Mailer: git-send-email 2.27.0.rc0.183.gde8f92d652 In-Reply-To: <20200525195930.309665-1-sandals@crustytoothpaste.net> References: <20200513005424.81369-1-sandals@crustytoothpaste.net> <20200525195930.309665-1-sandals@crustytoothpaste.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: <git.vger.kernel.org> X-Mailing-List: git@vger.kernel.org |
Series |
SHA-256 part 2/3: protocol functionality
|
expand
|
diff --git a/t/t5801/git-remote-testgit b/t/t5801/git-remote-testgit index 6b9f0b5dc7..1544d6dc6b 100755 --- a/t/t5801/git-remote-testgit +++ b/t/t5801/git-remote-testgit @@ -52,9 +52,11 @@ do test -n "$GIT_REMOTE_TESTGIT_SIGNED_TAGS" && echo "signed-tags" test -n "$GIT_REMOTE_TESTGIT_NO_PRIVATE_UPDATE" && echo "no-private-update" echo 'option' + echo 'object-format' echo ;; list) + echo ":object-format $(git rev-parse --show-object-format=storage)" git for-each-ref --format='? %(refname)' 'refs/heads/' 'refs/tags/' head=$(git symbolic-ref HEAD) echo "@$head HEAD" @@ -139,6 +141,10 @@ do test $val = "true" && force="true" || force= echo "ok" ;; + object-format) + test $val = "true" && object_format="true" || object_format= + echo "ok" + ;; *) echo "unsupported" ;;
When using an algorithm other than SHA-1, we need the remote helper to advertise support for the object-format extension and provide information back to us so that we can properly parse refs and return data. Ensure that the test remote helper understands these extensions. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> --- t/t5801/git-remote-testgit | 6 ++++++ 1 file changed, 6 insertions(+)