about summary refs log tree commit diff
path: root/third_party/git/t/t6041-bisect-submodule.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t6041-bisect-submodule.sh')
-rwxr-xr-xthird_party/git/t/t6041-bisect-submodule.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/third_party/git/t/t6041-bisect-submodule.sh b/third_party/git/t/t6041-bisect-submodule.sh
deleted file mode 100755
index df1eff0fb8..0000000000
--- a/third_party/git/t/t6041-bisect-submodule.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-test_description='bisect can handle submodules'
-
-. ./test-lib.sh
-. "$TEST_DIRECTORY"/lib-submodule-update.sh
-
-git_bisect () {
-	git status -su >expect &&
-	ls -1pR * >>expect &&
-	tar cf "$TRASH_DIRECTORY/tmp.tar" * &&
-	GOOD=$(git rev-parse --verify HEAD) &&
-	may_only_be_test_must_fail "$2" &&
-	$2 git checkout "$1" &&
-	if test -n "$2"
-	then
-		return
-	fi &&
-	echo "foo" >bar &&
-	git add bar &&
-	git commit -m "bisect bad" &&
-	BAD=$(git rev-parse --verify HEAD) &&
-	git reset --hard HEAD^^ &&
-	git submodule update &&
-	git bisect start &&
-	git bisect good $GOOD &&
-	rm -rf * &&
-	tar xf "$TRASH_DIRECTORY/tmp.tar" &&
-	git status -su >actual &&
-	ls -1pR * >>actual &&
-	test_cmp expect actual &&
-	git bisect bad $BAD
-}
-
-test_submodule_switch_func "git_bisect"
-
-test_done