]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4110-apply-scan.sh
The second batch
[thirdparty/git.git] / t / t4110-apply-scan.sh
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 for patches which require scanning forwards and backwards.
8
9 '
10
11 TEST_PASSES_SANITIZE_LEAK=true
12 . ./test-lib.sh
13
14 test_expect_success 'git apply scan' '
15 git apply \
16 "$TEST_DIRECTORY/t4110/patch1.patch" \
17 "$TEST_DIRECTORY/t4110/patch2.patch" \
18 "$TEST_DIRECTORY/t4110/patch3.patch" \
19 "$TEST_DIRECTORY/t4110/patch4.patch" \
20 "$TEST_DIRECTORY/t4110/patch5.patch" &&
21 test_cmp new.txt "$TEST_DIRECTORY/t4110/expect"
22 '
23
24 test_done