summaryrefslogtreecommitdiff
path: root/tests/test-treediscovery-legacy.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2011-10-01 20:49:36 +0000
committerLorry <lorry@roadtrain.codethink.co.uk>2012-09-27 13:27:51 +0000
commit921ced43c48c1d170452a7b251b94cc96ec8dd44 (patch)
tree3c4a89176ea67fe4c7bf7b375488361a823c95fa /tests/test-treediscovery-legacy.t
parent9039c805b0a7e36220101323f82735f08a104b37 (diff)
downloadmercurial-tarball-master.tar.gz
Imported from /srv/lorry/lorry-area/mercurial-tarball/mercurial-1.9.3.tar.gz.HEADmercurial-1.9.3master
Diffstat (limited to 'tests/test-treediscovery-legacy.t')
-rw-r--r--tests/test-treediscovery-legacy.t61
1 files changed, 0 insertions, 61 deletions
diff --git a/tests/test-treediscovery-legacy.t b/tests/test-treediscovery-legacy.t
index bc3563c..b31e574 100644
--- a/tests/test-treediscovery-legacy.t
+++ b/tests/test-treediscovery-legacy.t
@@ -1,5 +1,3 @@
- $ "$TESTDIR/hghave" serve || exit 80
-
Tests discovery against servers without getbundle support:
$ cat >> $HGRCPATH <<EOF
@@ -15,13 +13,6 @@ Tests discovery against servers without getbundle support:
$ cp $HGRCPATH $HGRCPATH-nocap
$ cp $HGRCPATH-withcap $HGRCPATH
-Prep for test server without branchmap support
-
- $ CAP="branchmap"
- $ . "$TESTDIR/notcapable"
- $ cp $HGRCPATH $HGRCPATH-nocap-branchmap
- $ cp $HGRCPATH-withcap $HGRCPATH
-
Setup HTTP server control:
$ remote=http://localhost:$HGPORT/
@@ -58,7 +49,6 @@ Both are empty:
$ hg push -R empty1 $remote
pushing to http://localhost:$HGPORT/
no changes found
- [1]
$ tstop
Base repo:
@@ -118,7 +108,6 @@ Full clone:
pushing to http://localhost:$HGPORT/
searching for changes
no changes found
- [1]
$ cd ..
Local is empty:
@@ -149,7 +138,6 @@ Local is empty:
$ hg push $remote
pushing to http://localhost:$HGPORT/
no changes found
- [1]
$ hg pull $remote
pulling from http://localhost:$HGPORT/
requesting all changes
@@ -194,7 +182,6 @@ Local is subset:
pushing to http://localhost:$HGPORT/
searching for changes
no changes found
- [1]
$ hg pull $remote
pulling from http://localhost:$HGPORT/
searching for changes
@@ -321,51 +308,3 @@ Partial pull:
$ tstop
-Exercise pushing to server without branchmap capability
-
- $ cp $HGRCPATH-nocap-branchmap $HGRCPATH-nocap
- $ hg init rlocal
- $ cd rlocal
- $ echo A > A
- $ hg ci -Am A
- adding A
- $ cd ..
- $ hg clone rlocal rremote
- updating to branch default
- 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
- $ cd rlocal
- $ echo B > B
- $ hg ci -Am B
- adding B
- $ cd ..
- $ tstart rremote
-
- $ cd rlocal
- $ hg incoming $remote
- comparing with http://localhost:$HGPORT/
- searching for changes
- no changes found
- [1]
- $ hg outgoing $remote
- comparing with http://localhost:$HGPORT/
- searching for changes
- 1 27547f69f254: B
- $ hg pull $remote
- pulling from http://localhost:$HGPORT/
- searching for changes
- no changes found
- $ hg push $remote
- pushing to http://localhost:$HGPORT/
- searching for changes
- remote: adding changesets
- remote: adding manifests
- remote: adding file changes
- remote: added 1 changesets with 1 changes to 1 files
- $ hg outgoing $remote
- comparing with http://localhost:$HGPORT/
- searching for changes
- no changes found
- [1]
- $ cd ..
-
- $ tstop