summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-10-03 16:33:51 -0400
committerJunio C Hamano <gitster@pobox.com>2016-10-03 14:25:43 -0700
commit32d8b4226a22ef2b4c22cddda7e134980bbabaf6 (patch)
tree737b208e8ff9d14e000469105dae4f7f4af3a375
parent0cf36115dce7438a0eafad54a81cc57175e8fb54 (diff)
downloadgit-32d8b4226a22ef2b4c22cddda7e134980bbabaf6.tar.gz
t5613: drop reachable_via function
This function was never used since its inception in dd05ea1 (test case for transitive info/alternates, 2006-05-07). Which is just as well, since it mutates the repo state in a way that would invalidate further tests, without cleaning up after itself. Let's get rid of it so that nobody is tempted to use it. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t5613-info-alternate.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/t/t5613-info-alternate.sh b/t/t5613-info-alternate.sh
index 9cd2626dba..e13f57d262 100755
--- a/t/t5613-info-alternate.sh
+++ b/t/t5613-info-alternate.sh
@@ -6,16 +6,6 @@
test_description='test transitive info/alternate entries'
. ./test-lib.sh
-# test that a file is not reachable in the current repository
-# but that it is after creating a info/alternate entry
-reachable_via() {
- alternate="$1"
- file="$2"
- if git cat-file -e "HEAD:$file"; then return 1; fi
- echo "$alternate" >> .git/objects/info/alternate
- git cat-file -e "HEAD:$file"
-}
-
test_valid_repo() {
git fsck --full > fsck.log &&
test_line_count = 0 fsck.log