diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2012-11-28 23:11:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-29 12:18:45 -0800 |
commit | 0803d35940954ebfd33820bffa7a8ab9951ff143 (patch) | |
tree | 2878191383f5c12b5bfa92c3453c7bc9ffb94732 /t/t5801-remote-helpers.sh | |
parent | 984f37681c937be0c7c1135e86141a83920edcc1 (diff) | |
download | git-0803d35940954ebfd33820bffa7a8ab9951ff143.tar.gz |
remote-testgit: remove irrelevant test
This was only to cover a bug that was fixed in remote-testpy not to
resurface.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5801-remote-helpers.sh')
-rwxr-xr-x | t/t5801-remote-helpers.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/t/t5801-remote-helpers.sh b/t/t5801-remote-helpers.sh index 2f7fc104ea..6801529a89 100755 --- a/t/t5801-remote-helpers.sh +++ b/t/t5801-remote-helpers.sh @@ -53,19 +53,6 @@ test_expect_success 'pushing to local repo' ' compare_refs localclone HEAD server HEAD ' -# Generally, skip this test. It demonstrates a now-fixed race in -# git-remote-testgit, but is too slow to leave in for general use. -: test_expect_success 'racily pushing to local repo' ' - test_when_finished "rm -rf server2 localclone2" && - cp -R server server2 && - git clone "testgit::${PWD}/server2" localclone2 && - (cd localclone2 && - echo content >>file && - git commit -a -m three && - GIT_REMOTE_TESTGIT_SLEEPY=2 git push) && - compare_refs localclone2 HEAD server2 HEAD -' - test_expect_success 'fetch new branch' ' (cd public && git checkout -b new && |