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.sh32
1 files changed, 0 insertions, 32 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 62b8a2e7bb..0000000000
--- a/third_party/git/t/t6041-bisect-submodule.sh
+++ /dev/null
@@ -1,32 +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) &&
-	git checkout "$1" &&
-	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 "git_bisect"
-
-test_done