about summary refs log tree commit diff
path: root/third_party/git/t/t0091-bugreport.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/t0091-bugreport.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/t0091-bugreport.sh')
-rwxr-xr-xthird_party/git/t/t0091-bugreport.sh76
1 files changed, 0 insertions, 76 deletions
diff --git a/third_party/git/t/t0091-bugreport.sh b/third_party/git/t/t0091-bugreport.sh
deleted file mode 100755
index 526304ff95b3..000000000000
--- a/third_party/git/t/t0091-bugreport.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/sh
-
-test_description='git bugreport'
-
-. ./test-lib.sh
-
-# Headers "[System Info]" will be followed by a non-empty line if we put some
-# information there; we can make sure all our headers were followed by some
-# information to check if the command was successful.
-HEADER_PATTERN="^\[.*\]$"
-
-check_all_headers_populated () {
-	while read -r line
-	do
-		if test "$(grep "$HEADER_PATTERN" "$line")"
-		then
-			echo "$line"
-			read -r nextline
-			if test -z "$nextline"; then
-				return 1;
-			fi
-		fi
-	done
-}
-
-test_expect_success 'creates a report with content in the right places' '
-	test_when_finished rm git-bugreport-check-headers.txt &&
-	git bugreport -s check-headers &&
-	check_all_headers_populated <git-bugreport-check-headers.txt
-'
-
-test_expect_success 'dies if file with same name as report already exists' '
-	test_when_finished rm git-bugreport-duplicate.txt &&
-	>>git-bugreport-duplicate.txt &&
-	test_must_fail git bugreport --suffix duplicate
-'
-
-test_expect_success '--output-directory puts the report in the provided dir' '
-	test_when_finished rm -fr foo/ &&
-	git bugreport -o foo/ &&
-	test_path_is_file foo/git-bugreport-*
-'
-
-test_expect_success 'incorrect arguments abort with usage' '
-	test_must_fail git bugreport --false 2>output &&
-	test_i18ngrep usage output &&
-	test_path_is_missing git-bugreport-*
-'
-
-test_expect_success 'runs outside of a git dir' '
-	test_when_finished rm non-repo/git-bugreport-* &&
-	nongit git bugreport
-'
-
-test_expect_success 'can create leading directories outside of a git dir' '
-	test_when_finished rm -fr foo/bar/baz &&
-	nongit git bugreport -o foo/bar/baz
-'
-
-test_expect_success 'indicates populated hooks' '
-	test_when_finished rm git-bugreport-hooks.txt &&
-	test_when_finished rm -fr .git/hooks &&
-	rm -fr .git/hooks &&
-	mkdir .git/hooks &&
-	for hook in applypatch-msg prepare-commit-msg.sample
-	do
-		write_script ".git/hooks/$hook" <<-EOF || return 1
-		echo "hook $hook exists"
-		EOF
-	done &&
-	git bugreport -s hooks &&
-	grep applypatch-msg git-bugreport-hooks.txt &&
-	! grep prepare-commit-msg git-bugreport-hooks.txt
-'
-
-test_done