]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4113-apply-ending.sh
Rewrite "git-frotz" to "git frotz"
[thirdparty/git.git] / t / t4113-apply-ending.sh
CommitLineData
cc189c2c
CM
1#!/bin/sh
2#
3# Copyright (c) 2006 Catalin Marinas
4#
5
5be60078 6test_description='git apply trying to add an ending line.
cc189c2c
CM
7
8'
9. ./test-lib.sh
10
11# setup
12
13cat >test-patch <<\EOF
14diff --git a/file b/file
15--- a/file
16+++ b/file
17@@ -1,2 +1,3 @@
18 a
19 b
20+c
21EOF
22
23echo 'a' >file
24echo 'b' >>file
25echo 'c' >>file
26
27test_expect_success setup \
5be60078 28 'git update-index --add file'
cc189c2c
CM
29
30# test
31
65aadb92 32test_expect_failure 'apply at the end' \
5be60078 33 'git apply --index test-patch'
cc189c2c 34
65aadb92
JH
35cat >test-patch <<\EOF
36diff a/file b/file
37--- a/file
38+++ b/file
39@@ -1,2 +1,3 @@
40+a
41 b
42 c
43EOF
44
45echo >file 'a
46b
47c'
5be60078 48git update-index file
65aadb92
JH
49
50test_expect_failure 'apply at the beginning' \
5be60078 51 'git apply --index test-patch'
65aadb92 52
cc189c2c 53test_done