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: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id A9EEB1F406 for ; Wed, 16 May 2018 01:59:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752647AbeEPB7a (ORCPT ); Tue, 15 May 2018 21:59:30 -0400 Received: from injection.crustytoothpaste.net ([192.241.140.119]:47452 "EHLO injection.crustytoothpaste.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752563AbeEPB6y (ORCPT ); Tue, 15 May 2018 21:58:54 -0400 Received: from genre.crustytoothpaste.net (unknown [IPv6:2001:470:b978:101:64f1:3b3f:8f13:59ed]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by injection.crustytoothpaste.net (Postfix) with ESMTPSA id C1CA660443; Wed, 16 May 2018 01:58:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=crustytoothpaste.net; s=default; t=1526435928; bh=FwO6egZ+eCKAvx75GR6uOmwfnom5OWjZ+5PGENnpuBM=; 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=sENlZvjolYIUaNZ2+avvEnS4yOQw+SOJfMo5PBCtwjxtHT8TysHxKVJ8Yoe15ofPb JWiHcm6YftlfSjThAIu5sd1WHci1rFreaQ170U0JlLnDJrIkplOoCZOzdAQf75MTX/ Ak8xKKBLqATWCBWKN9CZTh/nbNzACf+8i0P+pHymXEFEbK1zZPM3hP6PDLAsOIfs0u z005SzCJvHVEm/yM4qezCje+0/1RrBpDDeVUUKc1MvGDE0QV5+Q2exTt4cq8VrZzq3 kqUoNmhg/9JdSPDRe884Z+mRDgq++bhHtpYuOCQHzLtAmh1FM1KE8JRDfjd1E+74ea sZl7zCRNUMsBvjNjtD7Ff2fsb81UBZ8fbhs5dcbH1zatJu7HrssH9HSP1a6T/DhLN9 1dqFpser/OkRKKdcglpneprDpr4K5sFk/53AZW6MBMJ0/Q/+xme4cZWx6f/kN+xTo/ W764nYohbXlejLhQP1GkEPAoxwVX5x7MuYgWt0awE1NWs0lhN4H From: "brian m. carlson" To: git@vger.kernel.org Cc: Junio C Hamano , =?UTF-8?q?Nguy=E1=BB=85n=20Th=C3=A1i=20Ng=E1=BB=8Dc=20Duy?= , =?UTF-8?q?Martin=20=C3=85gren?= , Eric Sunshine , Johannes Sixt Subject: [PATCH v3 12/28] t3103: abstract away SHA-1-specific constants Date: Wed, 16 May 2018 01:56:14 +0000 Message-Id: <20180516015630.661349-13-sandals@crustytoothpaste.net> X-Mailer: git-send-email 2.17.0.441.gb46fe60e1d In-Reply-To: <20180516015630.661349-1-sandals@crustytoothpaste.net> References: <20180516015630.661349-1-sandals@crustytoothpaste.net> X-Scanned-By: MIMEDefang 2.79 on 127.0.1.1 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Adjust the test so that it uses variables and command substitution for trees instead of hard-coded hashes. This also has the benefit of making it more obvious how the test works. Signed-off-by: brian m. carlson --- t/t3103-ls-tree-misc.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/t3103-ls-tree-misc.sh b/t/t3103-ls-tree-misc.sh index 09dcf043fd..14520913af 100755 --- a/t/t3103-ls-tree-misc.sh +++ b/t/t3103-ls-tree-misc.sh @@ -17,7 +17,8 @@ test_expect_success 'setup' ' ' test_expect_success 'ls-tree fails with non-zero exit code on broken tree' ' - rm -f .git/objects/5f/cffbd6e4c5c5b8d81f5e9314b20e338e3ffff5 && + tree=$(git rev-parse HEAD:a) && + rm -f .git/objects/$(echo $tree | sed -e "s,^\(..\),\1/,") && test_must_fail git ls-tree -r HEAD '