Skip to content

Commit

Permalink
t5541-http-push: check that ref is unchanged for non-ff test
Browse files Browse the repository at this point in the history
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Tay Ray Chuan authored and Junio C Hamano committed Mar 2, 2010
1 parent e923eae commit fe4bc2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions t/t5541-http-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,17 @@ test_expect_success 'used receive-pack service' '
'

test_expect_success 'non-fast-forward push fails' '
cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
HEAD=$(git rev-parse --verify HEAD) &&
cd "$ROOT_PATH"/test_repo_clone &&
git checkout master &&
echo "changed" > path2 &&
git commit -a -m path2 --amend &&
HEAD=$(git rev-parse --verify HEAD) &&
!(git push -v origin >output 2>&1) &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
test $HEAD != $(git rev-parse --verify HEAD))
test $HEAD = $(git rev-parse --verify HEAD))
'

test_expect_success 'non-fast-forward push show ref status' '
Expand Down

0 comments on commit fe4bc2a

Please sign in to comment.