about summary refs log tree commit diff
path: root/third_party/git/t/t7010-setup.sh
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-21T10·03+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·29+0300
commit43b1791ec601732ac31195df96781a848360a9ac (patch)
treedaae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t7010-setup.sh
parent2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff)
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping
it in sync with cgit would be easier this way, but it has proven not
to be a big issue.

On the other hand, a vendored copy of git is an annoying maintenance
burden. It is much easier to rebase the single (dottime) patch that we
have.

This removes the vendored copy of git and instead passes the git
source code to cgit via `pkgs.srcOnly`, which includes the applied
patch so that cgit can continue rendering dottime.

Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/t7010-setup.sh')
-rwxr-xr-xthird_party/git/t/t7010-setup.sh161
1 files changed, 0 insertions, 161 deletions
diff --git a/third_party/git/t/t7010-setup.sh b/third_party/git/t/t7010-setup.sh
deleted file mode 100755
index 0335a9a158ab..000000000000
--- a/third_party/git/t/t7010-setup.sh
+++ /dev/null
@@ -1,161 +0,0 @@
-#!/bin/sh
-
-test_description='setup taking and sanitizing funny paths'
-
-. ./test-lib.sh
-
-test_expect_success setup '
-
-	mkdir -p a/b/c a/e &&
-	D=$(pwd) &&
-	>a/b/c/d &&
-	>a/e/f
-
-'
-
-test_expect_success 'git add (absolute)' '
-
-	git add "$D/a/b/c/d" &&
-	git ls-files >current &&
-	echo a/b/c/d >expect &&
-	test_cmp expect current
-
-'
-
-
-test_expect_success 'git add (funny relative)' '
-
-	rm -f .git/index &&
-	(
-		cd a/b &&
-		git add "../e/./f"
-	) &&
-	git ls-files >current &&
-	echo a/e/f >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git rm (absolute)' '
-
-	rm -f .git/index &&
-	git add a &&
-	git rm -f --cached "$D/a/b/c/d" &&
-	git ls-files >current &&
-	echo a/e/f >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git rm (funny relative)' '
-
-	rm -f .git/index &&
-	git add a &&
-	(
-		cd a/b &&
-		git rm -f --cached "../e/./f"
-	) &&
-	git ls-files >current &&
-	echo a/b/c/d >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git ls-files (absolute)' '
-
-	rm -f .git/index &&
-	git add a &&
-	git ls-files "$D/a/e/../b" >current &&
-	echo a/b/c/d >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git ls-files (relative #1)' '
-
-	rm -f .git/index &&
-	git add a &&
-	(
-		cd a/b &&
-		git ls-files "../b/c"
-	)  >current &&
-	echo c/d >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git ls-files (relative #2)' '
-
-	rm -f .git/index &&
-	git add a &&
-	(
-		cd a/b &&
-		git ls-files --full-name "../e/f"
-	)  >current &&
-	echo a/e/f >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'git ls-files (relative #3)' '
-
-	rm -f .git/index &&
-	git add a &&
-	(
-		cd a/b &&
-		git ls-files "../e/f"
-	)  >current &&
-	echo ../e/f >expect &&
-	test_cmp expect current
-
-'
-
-test_expect_success 'commit using absolute path names' '
-	git commit -m "foo" &&
-	echo aa >>a/b/c/d &&
-	git commit -m "aa" "$(pwd)/a/b/c/d"
-'
-
-test_expect_success 'log using absolute path names' '
-	echo bb >>a/b/c/d &&
-	git commit -m "bb" "$(pwd)/a/b/c/d" &&
-
-	git log a/b/c/d >f1.txt &&
-	git log "$(pwd)/a/b/c/d" >f2.txt &&
-	test_cmp f1.txt f2.txt
-'
-
-test_expect_success 'blame using absolute path names' '
-	git blame a/b/c/d >f1.txt &&
-	git blame "$(pwd)/a/b/c/d" >f2.txt &&
-	test_cmp f1.txt f2.txt
-'
-
-test_expect_success 'setup deeper work tree' '
-	test_create_repo tester
-'
-
-test_expect_success 'add a directory outside the work tree' '(
-	cd tester &&
-	d1="$(cd .. ; pwd)" &&
-	test_must_fail git add "$d1"
-)'
-
-
-test_expect_success 'add a file outside the work tree, nasty case 1' '(
-	cd tester &&
-	f="$(pwd)x" &&
-	echo "$f" &&
-	touch "$f" &&
-	test_must_fail git add "$f"
-)'
-
-test_expect_success 'add a file outside the work tree, nasty case 2' '(
-	cd tester &&
-	f="$(pwd | sed "s/.$//")x" &&
-	echo "$f" &&
-	touch "$f" &&
-	test_must_fail git add "$f"
-)'
-
-test_done