| 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2005 Junio C Hamano |
| 4 | # Copyright (c) 2005 Robert Fitzsimons |
| 5 | # |
| 6 | |
| 7 | test_description='git apply test patches with multiple fragments.' |
| 8 | |
| 9 | |
| 10 | . ./test-lib.sh |
| 11 | |
| 12 | cp "$TEST_DIRECTORY/t4109/patch1.patch" . |
| 13 | cp "$TEST_DIRECTORY/t4109/patch2.patch" . |
| 14 | cp "$TEST_DIRECTORY/t4109/patch3.patch" . |
| 15 | cp "$TEST_DIRECTORY/t4109/patch4.patch" . |
| 16 | |
| 17 | test_expect_success 'git apply (1)' ' |
| 18 | git apply patch1.patch patch2.patch && |
| 19 | test_cmp "$TEST_DIRECTORY/t4109/expect-1" main.c |
| 20 | ' |
| 21 | rm -f main.c |
| 22 | |
| 23 | test_expect_success 'git apply (2)' ' |
| 24 | git apply patch1.patch patch2.patch patch3.patch && |
| 25 | test_cmp "$TEST_DIRECTORY/t4109/expect-2" main.c |
| 26 | ' |
| 27 | rm -f main.c |
| 28 | |
| 29 | test_expect_success 'git apply (3)' ' |
| 30 | git apply patch1.patch patch4.patch && |
| 31 | test_cmp "$TEST_DIRECTORY/t4109/expect-3" main.c |
| 32 | ' |
| 33 | mv main.c main.c.git |
| 34 | |
| 35 | test_done |
| 36 |