summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2007-11-21 07:19:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-28 23:52:23 (GMT)
commit0673c96db92429d1c6dee528c71b067470b1e8f9 (patch)
tree7b7271b3f8607c3296d6a7be166cf706545964d8 /t
parent16ed34ad35d9a991a72b2db420ff95bc260990cc (diff)
downloadgit-0673c96db92429d1c6dee528c71b067470b1e8f9.zip
git-0673c96db92429d1c6dee528c71b067470b1e8f9.tar.gz
git-0673c96db92429d1c6dee528c71b067470b1e8f9.tar.bz2
Revert "t5516: test update of local refs on push"
This reverts commit 09fba7a59d38d1cafaf33eadaf1d409c4113b30c. These tests are superseded by the ones in t5404 (added in 6fa92bf3 and 8736a848), which are more extensive and better organized. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t5516-fetch-push.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh
index 86f9b53..4fbd5b1 100755
--- a/t/t5516-fetch-push.sh
+++ b/t/t5516-fetch-push.sh
@@ -254,32 +254,4 @@ test_expect_success 'push with dry-run' '
check_push_result $old_commit heads/master
'
-test_expect_success 'push updates local refs' '
-
- rm -rf parent child &&
- mkdir parent && cd parent && git init &&
- echo one >foo && git add foo && git commit -m one &&
- cd .. &&
- git clone parent child && cd child &&
- echo two >foo && git commit -a -m two &&
- git push &&
- test $(git rev-parse master) = $(git rev-parse remotes/origin/master)
-
-'
-
-test_expect_success 'push does not update local refs on failure' '
-
- rm -rf parent child &&
- mkdir parent && cd parent && git init &&
- echo one >foo && git add foo && git commit -m one &&
- echo exit 1 >.git/hooks/pre-receive &&
- chmod +x .git/hooks/pre-receive &&
- cd .. &&
- git clone parent child && cd child &&
- echo two >foo && git commit -a -m two || exit 1
- git push && exit 1
- test $(git rev-parse master) != $(git rev-parse remotes/origin/master)
-
-'
-
test_done