about summary refs log tree commit diff
path: root/third_party/git/t/t9169-git-svn-dcommit-crlf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t9169-git-svn-dcommit-crlf.sh')
-rwxr-xr-xthird_party/git/t/t9169-git-svn-dcommit-crlf.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/third_party/git/t/t9169-git-svn-dcommit-crlf.sh b/third_party/git/t/t9169-git-svn-dcommit-crlf.sh
deleted file mode 100755
index 54b1f61a2a..0000000000
--- a/third_party/git/t/t9169-git-svn-dcommit-crlf.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-test_description='git svn dcommit CRLF'
-. ./lib-git-svn.sh
-
-test_expect_success 'setup commit repository' '
-	svn_cmd mkdir -m "$test_description" "$svnrepo/dir" &&
-	git svn clone "$svnrepo" work &&
-	(
-		cd work &&
-		echo foo >>foo &&
-		git update-index --add foo &&
-		printf "a\\r\\n\\r\\nb\\r\\nc\\r\\n" >cmt &&
-		p=$(git rev-parse HEAD) &&
-		t=$(git write-tree) &&
-		cmt=$(git commit-tree -p $p $t <cmt) &&
-		git update-ref refs/heads/master $cmt &&
-		git cat-file commit HEAD | tail -n4 >out &&
-		test_cmp cmt out &&
-		git svn dcommit &&
-		printf "a\\n\\nb\\nc\\n" >exp &&
-		git cat-file commit HEAD | sed -ne 6,9p >out &&
-		test_cmp exp out
-	)
-'
-
-test_done