diff options
Diffstat (limited to 'third_party/git/t/t5411/test-0002-pre-receive-declined.sh')
-rw-r--r-- | third_party/git/t/t5411/test-0002-pre-receive-declined.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/third_party/git/t/t5411/test-0002-pre-receive-declined.sh b/third_party/git/t/t5411/test-0002-pre-receive-declined.sh deleted file mode 100644 index c246f7e68e49..000000000000 --- a/third_party/git/t/t5411/test-0002-pre-receive-declined.sh +++ /dev/null @@ -1,33 +0,0 @@ -test_expect_success "setup pre-receive hook ($PROTOCOL)" ' - mv "$upstream/hooks/pre-receive" "$upstream/hooks/pre-receive.ok" && - write_script "$upstream/hooks/pre-receive" <<-EOF - exit 1 - EOF -' - -# Refs of upstream : master(A) -# Refs of workbench: master(A) tags/v123 -# git-push : master(B) next(A) -test_expect_success "git-push is declined ($PROTOCOL)" ' - test_must_fail git -C workbench push origin \ - $B:refs/heads/master \ - HEAD:refs/heads/next \ - >out 2>&1 && - make_user_friendly_and_stable_output <out >actual && - cat >expect <<-EOF && - To <URL/of/upstream.git> - ! [remote rejected] <COMMIT-B> -> master (pre-receive hook declined) - ! [remote rejected] HEAD -> next (pre-receive hook declined) - EOF - test_cmp expect actual && - git -C "$upstream" show-ref >out && - make_user_friendly_and_stable_output <out >actual && - cat >expect <<-EOF && - <COMMIT-A> refs/heads/master - EOF - test_cmp expect actual -' - -test_expect_success "cleanup ($PROTOCOL)" ' - mv "$upstream/hooks/pre-receive.ok" "$upstream/hooks/pre-receive" -' |