about summary refs log tree commit diff
path: root/third_party/git/t/t4135/make-patches
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4135/make-patches')
-rwxr-xr-xthird_party/git/t/t4135/make-patches45
1 files changed, 0 insertions, 45 deletions
diff --git a/third_party/git/t/t4135/make-patches b/third_party/git/t/t4135/make-patches
deleted file mode 100755
index f5f45ddd099e..000000000000
--- a/third_party/git/t/t4135/make-patches
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-do_filename() {
-	desc=$1
-	postimage=$2
-
-	rm -fr file-creation &&
-	git init file-creation &&
-	(
-		cd file-creation &&
-		git commit --allow-empty -m init &&
-		echo postimage >"$postimage" &&
-		git add -N "$postimage" &&
-		git diff HEAD >"../git-$desc.diff"
-	) &&
-
-	rm -fr trad-modification &&
-	mkdir trad-modification &&
-	(
-		cd trad-modification &&
-		echo preimage >"$postimage.orig" &&
-		echo postimage >"$postimage" &&
-		! diff -u "$postimage.orig" "$postimage" >"../diff-$desc.diff"
-	) &&
-
-	rm -fr trad-creation &&
-	mkdir trad-creation &&
-	(
-		cd trad-creation &&
-		mkdir a b &&
-		echo postimage >"b/$postimage" &&
-		! diff -pruN a b >"../add-$desc.diff"
-	)
-}
-
-do_filename plain postimage.txt &&
-do_filename 'with spaces' 'post image.txt' &&
-do_filename 'with tab' 'post	image.txt' &&
-do_filename 'with backslash' 'post\image.txt' &&
-do_filename 'with quote' '"postimage".txt' &&
-expand add-plain.diff >damaged.diff ||
-{
-	echo >&2 Failed. &&
-	exit 1
-}