about summary refs log tree commit diff
path: root/third_party/git/t/t4117-apply-reject.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/t4117-apply-reject.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/t4117-apply-reject.sh')
-rwxr-xr-xthird_party/git/t/t4117-apply-reject.sh119
1 files changed, 0 insertions, 119 deletions
diff --git a/third_party/git/t/t4117-apply-reject.sh b/third_party/git/t/t4117-apply-reject.sh
deleted file mode 100755
index 0ee93fe845..0000000000
--- a/third_party/git/t/t4117-apply-reject.sh
+++ /dev/null
@@ -1,119 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2005 Junio C Hamano
-#
-
-test_description='git apply with rejects
-
-'
-
-. ./test-lib.sh
-
-test_expect_success setup '
-	for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
-	do
-		echo $i
-	done >file1 &&
-	cat file1 >saved.file1 &&
-	git update-index --add file1 &&
-	git commit -m initial &&
-
-	for i in 1 2 A B 4 5 6 7 8 9 10 11 12 C 13 14 15 16 17 18 19 20 D 21
-	do
-		echo $i
-	done >file1 &&
-	git diff >patch.1 &&
-	cat file1 >clean &&
-
-	for i in 1 E 2 3 4 5 6 7 8 9 10 11 12 C 13 14 15 16 17 18 19 20 F 21
-	do
-		echo $i
-	done >expected &&
-
-	mv file1 file2 &&
-	git update-index --add --remove file1 file2 &&
-	git diff -M HEAD >patch.2 &&
-
-	rm -f file1 file2 &&
-	mv saved.file1 file1 &&
-	git update-index --add --remove file1 file2 &&
-
-	for i in 1 E 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 F 21
-	do
-		echo $i
-	done >file1 &&
-
-	cat file1 >saved.file1
-'
-
-test_expect_success 'apply --reject is incompatible with --3way' '
-	test_when_finished "cat saved.file1 >file1" &&
-	git diff >patch.0 &&
-	git checkout file1 &&
-	test_must_fail git apply --reject --3way patch.0 &&
-	git diff --exit-code
-'
-
-test_expect_success 'apply without --reject should fail' '
-
-	test_must_fail git apply patch.1 &&
-	test_cmp file1 saved.file1
-'
-
-test_expect_success 'apply without --reject should fail' '
-
-	test_must_fail git apply --verbose patch.1 &&
-	test_cmp file1 saved.file1
-'
-
-test_expect_success 'apply with --reject should fail but update the file' '
-
-	cat saved.file1 >file1 &&
-	rm -f file1.rej file2.rej &&
-
-	test_must_fail git apply --reject patch.1 &&
-	test_cmp expected file1 &&
-
-	test_path_is_file file1.rej &&
-	test_path_is_missing file2.rej
-'
-
-test_expect_success 'apply with --reject should fail but update the file' '
-
-	cat saved.file1 >file1 &&
-	rm -f file1.rej file2.rej file2 &&
-
-	test_must_fail git apply --reject patch.2 >rejects &&
-	test_path_is_missing file1 &&
-	test_cmp expected file2 &&
-
-	test_path_is_file file2.rej &&
-	test_path_is_missing file1.rej
-
-'
-
-test_expect_success 'the same test with --verbose' '
-
-	cat saved.file1 >file1 &&
-	rm -f file1.rej file2.rej file2 &&
-
-	test_must_fail git apply --reject --verbose patch.2 >rejects &&
-	test_path_is_missing file1 &&
-	test_cmp expected file2 &&
-
-	test_path_is_file file2.rej &&
-	test_path_is_missing file1.rej
-
-'
-
-test_expect_success 'apply cleanly with --verbose' '
-
-	git cat-file -p HEAD:file1 >file1 &&
-	rm -f file?.rej file2 &&
-
-	git apply --verbose patch.1 &&
-
-	test_cmp file1 clean
-'
-
-test_done