about summary refs log tree commit diff
path: root/third_party/git/t/t5554-noop-fetch-negotiator.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t5554-noop-fetch-negotiator.sh')
-rwxr-xr-xthird_party/git/t/t5554-noop-fetch-negotiator.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/git/t/t5554-noop-fetch-negotiator.sh b/third_party/git/t/t5554-noop-fetch-negotiator.sh
deleted file mode 100755
index 2ac7b5859e..0000000000
--- a/third_party/git/t/t5554-noop-fetch-negotiator.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-test_description='test noop fetch negotiator'
-. ./test-lib.sh
-
-test_expect_success 'noop negotiator does not emit any "have"' '
-	rm -f trace &&
-
-	test_create_repo server &&
-	test_commit -C server to_fetch &&
-
-	test_create_repo client &&
-	test_commit -C client we_have &&
-
-	test_config -C client fetch.negotiationalgorithm noop &&
-	GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "$(pwd)/server" &&
-
-	! grep "fetch> have" trace &&
-	grep "fetch> done" trace
-'
-
-test_done