about summary refs log tree commit diff
path: root/third_party/git/t/t5409-colorize-remote-messages.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/t5409-colorize-remote-messages.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/t5409-colorize-remote-messages.sh')
-rwxr-xr-xthird_party/git/t/t5409-colorize-remote-messages.sh102
1 files changed, 0 insertions, 102 deletions
diff --git a/third_party/git/t/t5409-colorize-remote-messages.sh b/third_party/git/t/t5409-colorize-remote-messages.sh
deleted file mode 100755
index 5d8f401d8ece..000000000000
--- a/third_party/git/t/t5409-colorize-remote-messages.sh
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/bin/sh
-
-test_description='remote messages are colorized on the client'
-
-. ./test-lib.sh
-
-test_expect_success 'setup' '
-	mkdir .git/hooks &&
-	write_script .git/hooks/update <<-\EOF &&
-	echo error: error
-	echo ERROR: also highlighted
-	echo hint: hint
-	echo hinting: not highlighted
-	echo success: success
-	echo warning: warning
-	echo prefixerror: error
-	echo " " "error: leading space"
-	echo "    "
-	echo Err
-	echo SUCCESS
-	exit 0
-	EOF
-	echo 1 >file &&
-	git add file &&
-	git commit -m 1 &&
-	git clone . child &&
-	(
-		cd child &&
-		test_commit message2 file content2
-	)
-'
-
-test_expect_success 'keywords' '
-	git --git-dir child/.git -c color.remote=always push -f origin HEAD:refs/heads/keywords 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<BOLD;RED>error<RESET>: error" decoded &&
-	grep "<YELLOW>hint<RESET>:" decoded &&
-	grep "<BOLD;GREEN>success<RESET>:" decoded &&
-	grep "<BOLD;GREEN>SUCCESS<RESET>" decoded &&
-	grep "<BOLD;YELLOW>warning<RESET>:" decoded
-'
-
-test_expect_success 'whole words at line start' '
-	git --git-dir child/.git -c color.remote=always push -f origin HEAD:refs/heads/whole-words 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<YELLOW>hint<RESET>:" decoded &&
-	grep "hinting: not highlighted" decoded &&
-	grep "prefixerror: error" decoded
-'
-
-test_expect_success 'short line' '
-	git -C child -c color.remote=always push -f origin HEAD:short-line 2>output &&
-	test_decode_color <output >decoded &&
-	grep "remote: Err" decoded
-'
-
-test_expect_success 'case-insensitive' '
-	git --git-dir child/.git -c color.remote=always push -f origin HEAD:refs/heads/case-insensitive 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<BOLD;RED>error<RESET>: error" decoded &&
-	grep "<BOLD;RED>ERROR<RESET>: also highlighted" decoded
-'
-
-test_expect_success 'leading space' '
-	git --git-dir child/.git -c color.remote=always push -f origin HEAD:refs/heads/leading-space 2>output &&
-	test_decode_color <output >decoded &&
-	grep "  <BOLD;RED>error<RESET>: leading space" decoded
-'
-
-test_expect_success 'spaces only' '
-	git -C child -c color.remote=always push -f origin HEAD:only-space 2>output &&
-	test_decode_color <output >decoded &&
-	grep "remote:     " decoded
-'
-
-test_expect_success 'no coloring for redirected output' '
-	git --git-dir child/.git push -f origin HEAD:refs/heads/redirected-output 2>output &&
-	test_decode_color <output >decoded &&
-	grep "error: error" decoded
-'
-
-test_expect_success 'push with customized color' '
-	git --git-dir child/.git -c color.remote=always -c color.remote.error=blue push -f origin HEAD:refs/heads/customized-color 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<BLUE>error<RESET>:" decoded &&
-	grep "<BOLD;GREEN>success<RESET>:" decoded
-'
-
-
-test_expect_success 'error in customized color' '
-	git --git-dir child/.git -c color.remote=always -c color.remote.error=i-am-not-a-color push -f origin HEAD:refs/heads/error-customized-color 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<BOLD;GREEN>success<RESET>:" decoded
-'
-
-test_expect_success 'fallback to color.ui' '
-	git --git-dir child/.git -c color.ui=always push -f origin HEAD:refs/heads/fallback-color-ui 2>output &&
-	test_decode_color <output >decoded &&
-	grep "<BOLD;RED>error<RESET>: error" decoded
-'
-
-test_done