tests/test-discovery-obshashrange.t
branchmercurial-4.4
changeset 4553 aafd51f145ea
parent 4516 f54bb6eaf5e6
child 4675 79bc0f1a832e
--- a/tests/test-discovery-obshashrange.t	Sat Apr 20 03:55:11 2019 +0200
+++ b/tests/test-discovery-obshashrange.t	Tue Apr 23 12:28:32 2019 +0200
@@ -1117,62 +1117,4 @@
   .hg/cache/evoext-obscache-00: size=70
   $ cd ..
 
-Check capabilities advertisement
-================================
-
-  $ hg init with-evolve
-  $ cat << EOF >> with-evolve/.hg/hgrc
-  > [experimental]
-  > evolution.exchange=yes
-  > EOF
-  $ hg init without-evolve
-  $ cat << EOF >> without-evolve/.hg/hgrc
-  > [experimental]
-  > evolution.exchange=no
-  > EOF
-
-  $ hg debugcapabilities ssh://user@dummy/with-evolve | grep _evoext
-    _evoext_getbundle_obscommon
-    _evoext_obshash_0
-    _evoext_obshash_1
-    _evoext_obshashrange_v1
-  $ hg debugcapabilities ssh://user@dummy/without-evolve | grep _evoext
-  [1]
-
-Using http:
-
-  $ cat > web.conf << EOF
-  > [paths]
-  > / = *
-  > EOF
-
-(evolve version first)
-
-  $ hg serve --web-conf web.conf -p $HGPORT -d --pid-file hg.pid
-  $ cat hg.pid >> $DAEMON_PIDS
-
-  $ hg debugcapabilities http://localhost:$HGPORT/with-evolve| grep _evoext
-    _evoext_getbundle_obscommon
-    _evoext_obshash_0
-    _evoext_obshash_1
-    _evoext_obshashrange_v1
-  $ hg debugcapabilities http://localhost:$HGPORT/without-evolve| grep _evoext
-  [1]
-
   $ killdaemons.py
-
-
-(evolve version second)
-
-  $ hg serve --web-conf web.conf -p $HGPORT -d --pid-file hg.pid
-  $ cat hg.pid >> $DAEMON_PIDS
-
-  $ hg debugcapabilities http://localhost:$HGPORT/without-evolve| grep _evoext
-  [1]
-  $ hg debugcapabilities http://localhost:$HGPORT/with-evolve| grep _evoext
-    _evoext_getbundle_obscommon
-    _evoext_obshash_0
-    _evoext_obshash_1
-    _evoext_obshashrange_v1
-
-  $ killdaemons.py