2008-07-01 01:44:47 +02:00
|
|
|
#!/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 &&
|
2008-07-03 00:28:22 +02:00
|
|
|
git add some/sub/dir/file &&
|
|
|
|
git commit -m initial &&
|
|
|
|
git tag initial
|
2008-07-01 01:44:47 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2008-07-07 03:36:01 +02:00
|
|
|
test_expect_success 'apply --directory -p (1)' '
|
2008-07-01 01:44:47 +02:00
|
|
|
|
2008-07-07 03:36:01 +02:00
|
|
|
git apply --directory=some/sub -p3 --index patch &&
|
2008-07-01 01:44:47 +02:00
|
|
|
test Bello = $(git show :some/sub/dir/file) &&
|
|
|
|
test Bello = $(cat some/sub/dir/file)
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-07-07 03:36:01 +02:00
|
|
|
test_expect_success 'apply --directory -p (2) ' '
|
2008-07-03 00:28:22 +02:00
|
|
|
|
|
|
|
git reset --hard initial &&
|
2008-07-07 03:36:01 +02:00
|
|
|
git apply --directory=some/sub/ -p3 --index patch &&
|
2008-07-03 00:28:22 +02:00
|
|
|
test Bello = $(git show :some/sub/dir/file) &&
|
|
|
|
test Bello = $(cat some/sub/dir/file)
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-07-01 01:44:47 +02:00
|
|
|
test_done
|