rebase --root: fix amending root commit messages
[git.git] / t / t4136-apply-check.sh
blob6d9287231826ece18873b531186907cd75ef7461
1 #!/bin/sh
3 test_description='git apply should exit non-zero with unrecognized input.'
5 . ./test-lib.sh
7 test_expect_success 'setup' '
8 test_commit 1
11 test_expect_success 'apply --check exits non-zero with unrecognized input' '
12 test_must_fail git apply --check - <<-\EOF
13 I am not a patch
14 I look nothing like a patch
15 git apply must fail
16 EOF
19 test_expect_success 'apply exits non-zero with no-op patch' '
20 cat >input <<-\EOF &&
21 diff --get a/1 b/1
22 index 6696ea4..606eddd 100644
23 --- a/1
24 +++ b/1
25 @@ -1,1 +1,1 @@
27 EOF
28 test_must_fail git apply --stat input &&
29 test_must_fail git apply --check input
32 test_expect_success 'invalid combination: create and copy' '
33 test_must_fail git apply --check - <<-\EOF
34 diff --git a/1 b/2
35 new file mode 100644
36 copy from 1
37 copy to 2
38 EOF
41 test_expect_success 'invalid combination: create and rename' '
42 test_must_fail git apply --check - <<-\EOF
43 diff --git a/1 b/2
44 new file mode 100644
45 rename from 1
46 rename to 2
47 EOF
50 test_done