2006-05-23 23:48:36 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 Catalin Marinas
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git apply trying to add an ending line.
|
2006-05-23 23:48:36 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
# setup
|
|
|
|
|
|
|
|
cat >test-patch <<\EOF
|
|
|
|
diff --git a/file b/file
|
|
|
|
--- a/file
|
|
|
|
+++ b/file
|
|
|
|
@@ -1,2 +1,3 @@
|
|
|
|
a
|
|
|
|
b
|
|
|
|
+c
|
|
|
|
EOF
|
|
|
|
|
|
|
|
echo 'a' >file
|
|
|
|
echo 'b' >>file
|
|
|
|
echo 'c' >>file
|
|
|
|
|
|
|
|
test_expect_success setup \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git update-index --add file'
|
2006-05-23 23:48:36 +02:00
|
|
|
|
|
|
|
# test
|
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'apply at the end' \
|
|
|
|
'! git apply --index test-patch'
|
2006-05-23 23:48:36 +02:00
|
|
|
|
2006-05-24 22:19:50 +02:00
|
|
|
cat >test-patch <<\EOF
|
|
|
|
diff a/file b/file
|
|
|
|
--- a/file
|
|
|
|
+++ b/file
|
|
|
|
@@ -1,2 +1,3 @@
|
|
|
|
+a
|
|
|
|
b
|
|
|
|
c
|
|
|
|
EOF
|
|
|
|
|
|
|
|
echo >file 'a
|
|
|
|
b
|
|
|
|
c'
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-index file
|
2006-05-24 22:19:50 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'apply at the beginning' \
|
|
|
|
'! git apply --index test-patch'
|
2006-05-24 22:19:50 +02:00
|
|
|
|
2006-05-23 23:48:36 +02:00
|
|
|
test_done
|