summaryrefslogtreecommitdiff
path: root/tests/test-treediscovery-legacy.t
diff options
context:
space:
mode:
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