2005-08-28 17:25:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
# Copyright (c) 2005 Robert Fitzsimons
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git apply test for patches which require scanning forwards and backwards.
|
2005-08-28 17:25:10 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2008-07-20 10:33:46 +02:00
|
|
|
test_expect_success 'git apply scan' '
|
|
|
|
git apply \
|
|
|
|
"$TEST_DIRECTORY/t4110/patch1.patch" \
|
|
|
|
"$TEST_DIRECTORY/t4110/patch2.patch" \
|
|
|
|
"$TEST_DIRECTORY/t4110/patch3.patch" \
|
|
|
|
"$TEST_DIRECTORY/t4110/patch4.patch" \
|
|
|
|
"$TEST_DIRECTORY/t4110/patch5.patch" &&
|
|
|
|
test_cmp new.txt "$TEST_DIRECTORY/t4110/expect"
|
|
|
|
'
|
2005-08-28 17:25:10 +02:00
|
|
|
|
|
|
|
test_done
|