mirror of
https://github.com/git/git.git
synced 2024-11-20 16:54:03 +01:00
8ee4a6c2ec
The end of a string is string[length-1], not string[length+1]. I pointed it out during the review, but I forgot about it when applying the patch. This should fix it. Signed-off-by: Junio C Hamano <gitster@pobox.com>
44 lines
793 B
Bash
Executable File
44 lines
793 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test_description='apply same filename'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
mkdir -p some/sub/dir &&
|
|
echo Hello > some/sub/dir/file &&
|
|
git add some/sub/dir/file &&
|
|
git commit -m initial &&
|
|
git tag initial
|
|
|
|
'
|
|
|
|
cat > patch << EOF
|
|
diff a/bla/blub/dir/file b/bla/blub/dir/file
|
|
--- a/bla/blub/dir/file
|
|
+++ b/bla/blub/dir/file
|
|
@@ -1,1 +1,1 @@
|
|
-Hello
|
|
+Bello
|
|
EOF
|
|
|
|
test_expect_success 'apply --root -p (1)' '
|
|
|
|
git apply --root=some/sub -p3 --index patch &&
|
|
test Bello = $(git show :some/sub/dir/file) &&
|
|
test Bello = $(cat some/sub/dir/file)
|
|
|
|
'
|
|
|
|
test_expect_success 'apply --root -p (2) ' '
|
|
|
|
git reset --hard initial &&
|
|
git apply --root=some/sub/ -p3 --index patch &&
|
|
test Bello = $(git show :some/sub/dir/file) &&
|
|
test Bello = $(cat some/sub/dir/file)
|
|
|
|
'
|
|
|
|
test_done
|