Job try-40bf3d7ecc42b7f7cf8004f346b6fe304ffe7a59-debian10-cpython-3.6-0

Repo:try
Node:40bf3d7ecc42b7f7cf8004f346b6fe304ffe7a59
Name:debian10-cpython-3.6
Scheduled At:2019-11-04T16:33:03
Started At:2019-11-04T16:36:48
Finished At:2019-11-04T16:44:34

Failed Tests

test-bookmarks-corner-case.t

--- /hgwork/src/tests/test-bookmarks-corner-case.t
+++ /hgwork/src/tests/test-bookmarks-corner-case.t.err
@@ -201,7 +201,6 @@
   pushing to ssh://user@dummy/bookrace-server
   searching for changes
   remote: setting raced push up
-  remote has heads on branch 'default' that are not known locally: f26c3b5167d1
   remote: adding changesets
   remote: adding manifests
   remote: adding file changes
@@ -220,7 +219,6 @@
   |  summary:     A1
   |
   | o  changeset:   3:f26c3b5167d1
-  | |  bookmark:    book-B
   | |  user:        test
   | |  date:        Thu Jan 01 00:00:00 1970 +0000
   | |  summary:     B1
@@ -243,4 +241,3 @@
   
   $ hg -R bookrace-server book
      book-A                    4:9ce3b28c16de
-     book-B                    3:f26c3b5167d1

test-byteify-strings.t

--- /hgwork/src/tests/test-byteify-strings.t
+++ /hgwork/src/tests/test-byteify-strings.t.err
@@ -16,8 +16,23 @@
   > mydict.iteritems()
   > EOF
   $ byteify_strings testfile.py -i
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 334, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
   $ cat testfile.py
-  obj[b'test'] = b"1234"
+  obj['test'] = b"1234"
   mydict.iteritems()
 
 Test with dictiter
@@ -27,8 +42,21 @@
   > mydict.iteritems()
   > EOF
   $ byteify_strings testfile.py --dictiter
-  obj[b'test'] = b"1234"
-  mydict.items()
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test kwargs-like objects
 
@@ -64,35 +92,21 @@
   > commitopts.setdefault('test', 'testing')
   > EOF
   $ byteify_strings testfile.py --treat-as-kwargs kwargs opts commitopts
-  kwargs['test'] = b"123"
-  kwargs[test[b'testing']]
-  kwargs[test[[[b'testing']]]]
-  kwargs[kwargs['testing']]
-  kwargs.get('test')
-  kwargs.pop('test')
-  kwargs.get('test', b'testing')
-  kwargs.pop('test', b'testing')
-  kwargs.setdefault('test', b'testing')
-  
-  opts['test'] = b"123"
-  opts[test[b'testing']]
-  opts[test[[[b'testing']]]]
-  opts[opts['testing']]
-  opts.get('test')
-  opts.pop('test')
-  opts.get('test', b'testing')
-  opts.pop('test', b'testing')
-  opts.setdefault('test', b'testing')
-  
-  commitopts['test'] = b"123"
-  commitopts[test[b'testing']]
-  commitopts[test[[[b'testing']]]]
-  commitopts[commitopts['testing']]
-  commitopts.get('test')
-  commitopts.pop('test')
-  commitopts.get('test', b'testing')
-  commitopts.pop('test', b'testing')
-  commitopts.setdefault('test', b'testing')
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test attr*() as methods
 
@@ -111,18 +125,21 @@
   >     pass
   > EOF
   $ byteify_strings testfile.py --allow-attr-methods
-  setattr(o, 'a', 1)
-  util.setattr(o, 'ae', 1)
-  util.getattr(o, 'alksjdf', b'default')
-  util.addattr(o, 'asdf')
-  util.hasattr(o, 'lksjdf', b'default')
-  util.safehasattr(o, 'lksjdf', b'default')
-  @eh.wrapfunction(func, 'lksjdf')
-  def f():
-      pass
-  @eh.wrapclass(klass, 'lksjdf')
-  def f():
-      pass
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test without attr*() as methods
 
@@ -141,18 +158,21 @@
   >     pass
   > EOF
   $ byteify_strings testfile.py
-  setattr(o, 'a', 1)
-  util.setattr(o, b'ae', 1)
-  util.getattr(o, b'alksjdf', b'default')
-  util.addattr(o, b'asdf')
-  util.hasattr(o, b'lksjdf', b'default')
-  util.safehasattr(o, b'lksjdf', b'default')
-  @eh.wrapfunction(func, b'lksjdf')
-  def f():
-      pass
-  @eh.wrapclass(klass, b'lksjdf')
-  def f():
-      pass
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test ignore comments
 
@@ -173,20 +193,21 @@
   > 
   > EOF
   $ byteify_strings testfile.py
-  # py3-transform: off
-  "none"
-  "of"
-  'these'
-  s = """should"""
-  d = '''be'''
-  # py3-transform: on
-  b"this should"
-  b'and this also'
-  
-  # no-py3-transform
-  l = "this should be ignored"
-  l2 = b"this shouldn't"
-  
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 Test triple-quoted strings
 
   $ cat > testfile.py <<EOF
@@ -201,15 +222,21 @@
   > '''
   > EOF
   $ byteify_strings testfile.py
-  """This is ignored
-  """
-  
-  line = b"""
-    This should not be
-  """
-  line = b'''
-  Neither should this
-  '''
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test prefixed strings
 
@@ -218,8 +245,21 @@
   > obj[r'test'] = u"1234"
   > EOF
   $ byteify_strings testfile.py
-  obj[b'test'] = b"1234"
-  obj[r'test'] = u"1234"
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]
 
 Test multi-line alignment
 
@@ -245,22 +285,18 @@
   >  }
   > EOF
   $ byteify_strings testfile.py
-  def foo():
-      error.Abort(_(b"foo"
-                    b"bar"
-                    b"%s")
-                  % parameter)
-  {
-      b'test': dict,
-      b'test2': dict,
-  }
-  [
-     b"thing",
-     b"thing2"
-  ]
-  (
-     b"tuple",
-     b"tuple2",
-  )
-  {b"thing",
-   }
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 345, in <module>
+      main()
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 338, in main
+      process(fin, fout, opts)
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 264, in process
+      fout.write(tokenize.untokenize(tokens))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 338, in untokenize
+      out = ut.untokenize(iterable)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/tokenize.py", line 247, in untokenize
+      for t in it:
+    File "/hgwork/src/tests/../contrib/byteify-strings.py", line 161, in replacetokens
+      if t.type == token.COMMENT:
+  AttributeError: module 'token' has no attribute 'COMMENT'
+  [1]

test-check-format.t

test-check-module-imports.t

--- /hgwork/src/tests/test-check-module-imports.t
+++ /hgwork/src/tests/test-check-module-imports.t.err
@@ -37,3 +37,18 @@
   > -X tests/test-imports-checker.t    > -X tests/test-verify-repo-operations.py    > | sed 's-\-/-g' | "$PYTHON" "$import_checker" -
+  Traceback (most recent call last):
+    File "/hgwork/src/tests/../contrib/import-checker.py", line 813, in <module>
+      sys.exit(int(main(sys.argv)))
+    File "/hgwork/src/tests/../contrib/import-checker.py", line 780, in main
+      for src, modname, name, line in sources(source_path, localmodname):
+    File "/hgwork/src/tests/../contrib/import-checker.py", line 758, in sources
+      for script, modname, t, line in embedded(f, modname, src):
+    File "/hgwork/src/tests/../contrib/import-checker.py", line 728, in embedded
+      for name, starts, ends, code in testparseutil.pyembedded(f, src, errors):
+    File "/hgwork/src/contrib/testparseutil.py", line 186, in embedded
+      for lineno, line in enumerate(lines, 1):
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/encodings/ascii.py", line 26, in decode
+      return codecs.ascii_decode(input, self.errors)[0]
+  UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 996: ordinal not in range(128)
+  [1]

test-hghave.t

--- /hgwork/src/tests/test-hghave.t
+++ /hgwork/src/tests/test-hghave.t.err
@@ -3,6 +3,8 @@
 Testing that hghave does not crash when checking features
 
   $ hghave --test-features 2>/dev/null
+  feature black failed:  cannot use a string pattern on a bytes-like object
+  [1]
 
 Testing hghave extensibility for third party tools
 

test-highlight.t

--- /hgwork/src/tests/test-highlight.t
+++ /hgwork/src/tests/test-highlight.t.err
@@ -967,6 +967,10 @@
   $ hg init eucjp
   $ cd eucjp
   $ "$PYTHON" -c 'print("ยตรพ")' >> eucjp.txt  # Japanese kanji "Kyo"
+  Traceback (most recent call last):
+    File "<string>", line 1, in <module>
+  UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(128)
+  [1]
   $ hg ci -Ama
   adding eucjp.txt
   $ hgserveget () {

test-install.t

--- /hgwork/src/tests/test-install.t
+++ /hgwork/src/tests/test-install.t.err
@@ -155,12 +155,89 @@
 
 debuginstall extension support
   $ hg debuginstall --config extensions.fsmonitor= --config fsmonitor.watchman_exe=false | grep atchman
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.6.9 (default, Nov  2 2019, 18:14:11) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+96-40bf3d7ecc42)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.5a148fuy/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/hgext/fsmonitor/__init__.py", line 201, in debuginstall
+      err,
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/formatter.py", line 358, in condwrite
+      self._write(deftext % fielddata, **opts)
+  TypeError: %b requires a bytes-like object, or an object that implements __bytes__, not 'str'
   fsmonitor checking for watchman binary... (false)
-   watchman binary missing or broken: warning: Watchman unavailable: watchman exited with code 1
 Verify the json works too:
   $ hg debuginstall --config extensions.fsmonitor= --config fsmonitor.watchman_exe=false -Tjson | grep atchman
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.6.9 (default, Nov  2 2019, 18:14:11) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+96-40bf3d7ecc42)
+  ** Extensions loaded: fsmonitor
+  ** ProgrammingError: Mercurial only does output with bytes: 'warning: Watchman unavailable: watchman exited with code 1'
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.5a148fuy/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/debugcommands.py", line 1707, in debuginstall
+      fm.end()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/formatter.py", line 445, in end
+      baseformatter.end(self)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/formatter.py", line 269, in end
+      self._showitem()
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/formatter.py", line 440, in _showitem
+      u = templatefilters.json(v, paranoid=False)
+    File "/hgwork/tmp/hgtests.5a148fuy/install/lib/python/mercurial/templatefilters.py", line 335, in json
+      b'Mercurial only does output with bytes: %r' % obj
+  mercurial.error.ProgrammingError: Mercurial only does output with bytes: 'warning: Watchman unavailable: watchman exited with code 1'
     "fsmonitor-watchman": "false",
-    "fsmonitor-watchman-error": "warning: Watchman unavailable: watchman exited with code 1",
 
 
 #if test-repo

Skipped Tests

Long Tests

DurationTest
171.4stest-merge-combination.t
131.1stest-revset.t
115.5stest-obsolete-bundle-strip.t
112.1stest-bookmarks-pushpull.t#b2-binary
111.8stest-bookmarks-pushpull.t#b2-pushkey
110.3stest-subrepo.t
105.3stest-obsolete.t
103.4stest-largefiles.t
99.1stest-log.t
97.3stest-template-functions.t
95.9stest-graft.t#abortcommand
95.4stest-graft.t#abortflag
90.5stest-largefiles-misc.t
89.5stest-mq.t
85.5stest-glog-beautifygraph.t
85.5stest-rebase-obsolete.t
85.1stest-glog.t
84.3stest-import.t
81.3stest-obsmarker-template.t
77.8stest-merge-tools.t
74.5stest-http-permissions.t
73.3stest-bundle2-exchange.t#sshv1
73.0stest-bundle2-exchange.t#sshv2
71.0stest-fix.t
68.2stest-commit-amend.t
68.1stest-shelve.t#stripbased
68.0stest-largefiles-update.t
67.7stest-update-branches.t
67.3stest-shelve.t#phasebased
65.5stest-rename-merge2.t
65.2stest-revset2.t
63.4stest-strip.t
62.2stest-bookmarks.t
62.0stest-copies.t#compatibility
62.0stest-copies.t#filelog
61.8stest-copies.t#sidedata
61.7stest-copies.t#changeset
61.5stest-subrepo-git.t
61.3stest-shelve2.t#phasebased#abortcommand#continuecommand
61.0stest-shelve2.t#phasebased#abortflag#continuecommand
61.0stest-shelve2.t#phasebased#abortcommand#continueflag
60.7stest-shelve2.t#phasebased#abortflag#continueflag
59.8stest-shelve2.t#stripbased#abortcommand#continuecommand
59.6stest-shelve2.t#stripbased#abortflag#continuecommand
59.6stest-shelve2.t#stripbased#abortcommand#continueflag
59.5stest-phases-exchange.t
59.0stest-shelve2.t#stripbased#abortflag#continueflag
58.4stest-merge-force.t
58.4stest-check-pylint.t
57.8stest-keyword.t
56.3stest-push-warn.t
56.3stest-template-basic.t
55.4stest-lfs.t
54.5stest-obsolete-divergent.t
54.2stest-merge-changedelete.t
54.1stest-push-race.t#unrelated
54.0stest-mq-subrepo.t
54.0stest-push-race.t#strict
53.7stest-template-keywords.t
53.5stest-narrow.t#flat#lfs-on
53.5stest-narrow.t#tree#lfs-on
53.4stest-mv-cp-st-diff.t
53.1stest-clone.t#sshv1
52.2stest-clone.t#sshv2
52.0stest-copytrace-heuristics.t
51.8stest-annotate.t
51.7stest-transplant.t#commandmode
51.6stest-run-tests.t
51.6stest-transplant.t#continueflag
51.4stest-revert.t
49.8stest-mq-header-date.t
48.7stest-convert-filemap.t
48.4stest-bisect.t
48.2stest-mq-header-from.t
46.4stest-narrow.t#tree#lfs-off
45.9stest-fileset.t
45.8stest-narrow.t#flat#lfs-off
45.0stest-resolve.t
44.6stest-rebase-inmemory.t
44.2stest-tags.t
44.0stest-template-map.t
42.9stest-uncommit.t
41.3stest-rebase-scenario-global.t
40.9stest-subrepo-deep-nested-change.t
40.6stest-init.t
40.5stest-tag.t
39.6stest-backout.t
39.5stest-remotefilelog-repack.t
39.2stest-treemanifest.t
39.1stest-copies-unrelated.t#compatibility
39.1stest-copies-unrelated.t#changeset
38.8stest-copies-unrelated.t#filelog
38.7stest-copies-unrelated.t#sidedata
38.0stest-treediscovery.t
37.6stest-mq-guards.t
37.4stest-ssh-proto.t
37.2stest-contrib-perf.t
36.8stest-branches.t
36.5stest-hook.t
36.4stest-censor.t
35.1stest-commit-interactive.t
35.1stest-remotefilelog-repack-fast.t
35.0stest-commit.t
34.3stest-bisect2.t
34.3stest-rebase-collapse.t
34.2stest-rename.t
34.0stest-hgwebdir.t
34.0stest-remotefilelog-bgprefetch.t
33.8stest-help.t
33.8stest-status.t
33.7stest-bundle.t
33.5stest-alias.t
33.3stest-narrow-widen-no-ellipsis.t#tree
33.1stest-histedit-fold.t
32.9stest-check-code.t
32.8stest-largefiles-wireproto.t#sshv1
32.8stest-largefiles-wireproto.t#sshv2
32.8stest-ssh.t#sshv2
32.7stest-ssh.t#sshv1
32.7stest-narrow-clone.t
32.6stest-narrow-widen.t#flat
32.6stest-narrow-widen-no-ellipsis.t#flat
32.6stest-narrow-widen.t#tree
31.8stest-issue3084.t
31.7stest-https.t
31.7stest-archive.t
31.6stest-automv.t
31.0stest-newbranch.t
31.0stest-rebase-abort.t#abortcommand#continuecommand
31.0stest-rebase-abort.t#abortcommand#continueflag
30.8stest-rebase-abort.t#abortflag#continuecommand
30.8stest-fastannotate-hg.t
30.8stest-rebase-abort.t#abortflag#continueflag
30.4stest-mq-qpush-fail.t
30.4stest-subrepo-svn.t
30.2stest-merge-no-file-change.t
30.2stest-ssh-bundle1.t#sshv2
30.0stest-extension.t
30.0stest-ssh-bundle1.t#sshv1
29.8stest-obshistory.t
29.7stest-check-pyflakes.t
29.7stest-phases.t
29.6stest-histedit-obsolete.t#abortcommand
29.4stest-fetch.t
29.3stest-eol.t
29.3stest-histedit-obsolete.t#abortflag
29.2stest-acl.t
29.0stest-remotefilelog-prefetch.t
28.9stest-narrow-share.t#flat
28.9stest-http-bad-server.t
28.7stest-narrow-share.t#tree
28.2stest-histedit-arguments.t#abortcommand
28.1stest-histedit-arguments.t#abortflag
27.9stest-bheads.t
27.8stest-setdiscovery.t
27.5stest-convert-git.t
27.1stest-convert-hg-sink.t
26.9stest-bookflow.t
26.9stest-obsolete-distributed.t
26.6stest-absorb.t
26.6stest-convert-cvs-detectmerge.t
26.2stest-import-git.t
25.8stest-patchbomb.t
25.7stest-git-export.t
25.2stest-mq-qnew.t
25.1stest-split.t#obsstore-on
25.0stest-rebase-cache.t
25.0stest-branch-change.t
24.9stest-lfs-serve.t#lfsremote-on
24.9stest-upgrade-repo.t
24.9stest-merge1.t
24.8stest-convert-cvs.t
24.6stest-narrow-shallow-merges.t
24.4stest-mq-qpush-exact.t
24.4stest-remove.t
24.3stest-sparse.t
24.2stest-audit-subrepo.t
24.1stest-amend.t#obsstore-on
24.1stest-unamend.t
24.1stest-hghave.t
24.0stest-treediscovery-legacy.t
23.8stest-rebase-dest.t
23.8stest-rebase-parameters.t
23.8stest-walk.t
23.8stest-grep.t
23.7stest-bundle-r.t
23.6stest-amend.t#obsstore-off
23.3stest-histedit-edit.t
23.3stest-hgweb-commands.t
23.0stest-split.t#obsstore-off
22.9stest-http.t
22.8stest-commandserver.t
22.8stest-narrow-clone-stream.t#flat-fncache
22.8stest-show-work.t
22.8stest-parse-date.t
22.7stest-clone-uncompressed.t#stream-bundle2
22.6stest-debugcommands.t
22.5stest-narrow-clone-nonlinear.t
22.5stest-show-stack.t
22.5stest-narrow-clone-stream.t#flat-nofncache
22.4stest-narrow-clone-stream.t#tree
22.4stest-infinitepush-bundlestore.t
22.4stest-rebase-newancestor.t
22.3stest-rollback.t
22.2stest-hgweb-symrev.t
21.7stest-obsmarkers-effectflag.t
21.7stest-rename-merge1.t
21.7stest-ssh-proto-unbundle.t
21.7stest-narrow-clone-no-ellipsis.t
21.3stest-copies-in-changeset.t#sidedata
21.3stest-add.t
21.3stest-convert-svn-sink.t
21.3stest-subrepo-recursion.t
21.1stest-rebase-mq-skip.t#continuecommand
21.0stest-rebase-mq-skip.t#continueflag
21.0stest-convert-cvs-synthetic.t
20.8stest-rebase-interruptions.t
20.8stest-mq-qimport.t
20.7stest-bookmarks-merge.t
20.7stest-push.t
20.6stest-revset-legacy-lookup.t
20.5stest-push-http.t#bundle2
20.1stest-rebase-pull.t
20.0stest-http-bundle1.t
20.0stest-status-color.t

Timeline

test-check-code.t (32.94s)test-contrib-check-code.t (2.13s)test-contrib-check-commit.t (0.21s)test-contrib-perf.t (37.19s)test-imports-checker.t (0.91s)test-merge-combination.t (171.41s)test-obsolete-checkheads.t (16.64s)test-push-checkheads-unpushed-D4.t (7.51s)test-push-race.t#strict (53.97s)test-push-race.t#unrelated (54.08s)test-run-tests.t (51.63s)test-check-py3-compat.t (5.21s)test-push-checkheads-pruned-B8.t (8.05s)test-push-checkheads-unpushed-D3.t (7.15s)test-push-checkheads-unpushed-D5.t (7.42s)test-largefiles-update.t (67.96s)test-push-checkheads-pruned-B5.t (6.40s)test-push-checkheads-superceed-A3.t (6.18s)test-push-checkheads-superceed-A6.t (7.17s)test-push-checkheads-superceed-A7.t (7.16s)test-push-checkheads-unpushed-D2.t (6.12s)test-push-checkheads-unpushed-D7.t (7.30s)test-rebase-check-restore.t (7.33s)test-push-checkheads-partial-C1.t (4.87s)test-push-checkheads-partial-C2.t (4.94s)test-push-checkheads-pruned-B2.t (5.45s)test-push-checkheads-pruned-B3.t (5.49s)test-push-checkheads-pruned-B4.t (5.13s)test-push-checkheads-superceed-A2.t (6.24s)test-push-checkheads-unpushed-D6.t (5.87s)test-push-checkheads-partial-C3.t (4.71s)test-push-checkheads-partial-C4.t (4.64s)test-push-checkheads-pruned-B6.t (5.43s)test-push-checkheads-pruned-B7.t (5.42s)test-push-checkheads-superceed-A8.t (5.70s)test-push-checkheads-unpushed-D1.t (4.96s)test-subrepo-svn.t (30.41s)test-push-checkheads-superceed-A4.t (4.50s)test-push-checkheads-superceed-A5.t (4.41s)test-push-checkheads-pruned-B1.t (3.62s)test-push-checkheads-superceed-A1.t (3.95s)test-copytrace-heuristics.t (51.98s)test-check-config.t (13.43s)test-glog-beautifygraph.t (85.54s)test-gendoc-ja.t (4.46s)test-convert-cvs.t (24.78s)test-check-module-imports.t (1.53s)test-help.t (33.84s)test-obsolete-bounds-checking.t (1.05s)test-gendoc.t (6.22s)test-glog.t (85.08s)test-convert-svn-sink.t (21.28s)test-check-help.t (10.46s)test-patchbomb.t (25.83s)test-convert-svn-source.t (0.13s)test-obsolete-bundle-strip.t (115.48s)test-check-pyflakes.t (29.69s)test-abort-checkin.t (1.15s)test-http-bad-server.t (28.86s)test-ssh-proto-unbundle.t (21.71s)test-obsmarker-template.t (81.33s)test-acl.t (29.20s)test-check-commit.t (1.83s)test-check-shbang.t (2.37s)test-convert-svn-move.t (0.12s)test-check-interfaces.py (0.56s)test-hgweb-commands.t (23.27s)test-hgweb-symrev.t (22.22s)test-obsolete.t (105.34s)test-upgrade-repo.t (24.88s)test-extension.t (30.02s)test-ssh-proto.t (37.38s)test-log.t (99.06s)test-check-execute.t (1.60s)test-dirstate-race.t (17.03s)test-check-pylint.t (58.41s)test-graft.t#abortcommand (95.92s)test-graft.t#abortflag (95.40s)test-convert-svn-encoding.t (0.12s)test-wireproto-content-redirects.t (4.88s)test-hgweb-filelog.t (10.69s)test-hgwebdir.t (34.04s)test-wireproto-exchangev2.t (19.61s)test-bundle2-format.t (12.84s)test-template-map.t (44.05s)test-revset.t (131.11s)test-subrepo.t (110.34s)test-convert-cvs-detectmerge.t (26.61s)test-rebase-obsolete.t (85.48s)test-largefiles.t (103.42s)test-merge-tools.t (77.76s)test-hgweb-json.t (12.96s)test-convert-cvs-synthetic.t (20.96s)test-gendoc-ro.t (4.23s)test-import.t (84.30s)test-subrepo-deep-nested-change.t (40.86s)test-bundle2-exchange.t#sshv1 (73.28s)test-bundle2-exchange.t#sshv2 (73.04s)test-phases-exchange.t (59.46s)test-bookmarks-pushpull.t#b2-binary (112.09s)test-bookmarks-pushpull.t#b2-pushkey (111.82s)test-convert-cvsnt-mergepoints.t (12.93s)test-strip.t (63.39s)test-template-functions.t (97.30s)test-commit-interactive.t (35.15s)test-merge-changedelete.t (54.22s)test-lfs.t (55.44s)test-fix.t (71.05s)test-hook.t (36.52s)test-rename-merge2.t (65.51s)test-https.t (31.71s)test-highlight.t (13.92s)test-convert-git.t (27.48s)test-http-permissions.t (74.54s)test-lfs-test-server.t#git-server (0.29s)test-lfs-test-server.t#hg-server (13.75s)test-setdiscovery.t (27.75s)test-commandserver.t (22.82s)test-clone.t#sshv1 (53.10s)test-clone.t#sshv2 (52.18s)test-bookmarks.t (62.16s)test-check-clang-format.t (2.00s)test-merge-force.t (58.43s)test-revset2.t (65.21s)test-convert-cvs-branch.t (18.44s)test-shelve.t#phasebased (67.33s)test-shelve.t#stripbased (68.09s)test-largefiles-misc.t (90.45s)test-commit-amend.t (68.25s)test-branches.t (36.80s)test-http-protocol.t (14.80s)test-hgweb-diffs.t (14.10s)test-keyword.t (57.83s)test-revert.t (51.41s)test-template-keywords.t (53.70s)test-wireproto-command-filesdata.t (9.96s)test-convert-svn-branches.t (0.12s)test-mq.t (89.54s)test-convert-hg-svn.t (0.12s)test-gendoc-de.t (4.49s)test-lfs-serve-access.t (14.09s)test-wireproto-command-capabilities.t (4.55s)test-generaldelta.t (15.84s)test-subrepo-git.t (61.55s)test-lfs-serve.t#lfsremote-off (8.53s)test-lfs-serve.t#lfsremote-on (24.91s)test-transplant.t#commandmode (51.69s)test-transplant.t#continueflag (51.56s)test-treemanifest.t (39.24s)test-tags.t (44.16s)test-phases.t (29.67s)test-template-basic.t (56.28s)test-tag.t (40.49s)test-subrepo-recursion.t (21.26s)test-hgweb.t (16.92s)test-convert.t (9.45s)test-check-jshint.t (0.32s)test-http-api-httpv2.t (9.55s)test-http.t (22.89s)test-convert-filemap.t (48.74s)test-obsolete-divergent.t (54.54s)test-annotate.t (51.82s)test-bundle.t (33.73s)test-resolve.t (45.04s)test-shelve2.t#phasebased#abortcommand#continuecommand (61.29s)test-shelve2.t#phasebased#abortcommand#continueflag (60.95s)test-shelve2.t#phasebased#abortflag#continuecommand (61.03s)test-shelve2.t#phasebased#abortflag#continueflag (60.74s)test-shelve2.t#stripbased#abortcommand#continuecommand (59.82s)test-shelve2.t#stripbased#abortcommand#continueflag (59.57s)test-shelve2.t#stripbased#abortflag#continuecommand (59.63s)test-shelve2.t#stripbased#abortflag#continueflag (59.05s)test-split.t#obsstore-off (23.02s)test-split.t#obsstore-on (25.09s)test-notify.t (12.00s)test-encoding-textwrap.t (2.87s)test-obsolete-distributed.t (26.88s)test-walk.t (23.77s)test-mv-cp-st-diff.t (53.44s)test-bisect.t (48.37s)test-convert-p4-filetypes.t (0.11s)test-rebase-scenario-global.t (41.29s)test-commit.t (35.00s)test-ssh.t#sshv1 (32.70s)test-ssh.t#sshv2 (32.75s)test-bundle2-remote-changegroup.t#sshv1 (19.76s)test-bundle2-remote-changegroup.t#sshv2 (19.81s)test-clonebundles.t (19.37s)test-wireproto-exchangev2-shallow.t (5.97s)test-import-git.t (26.17s)test-mq-header-from.t (48.25s)test-i18n.t (4.46s)test-treediscovery.t (38.05s)test-bisect2.t (34.34s)test-archive.t (31.66s)test-fileset.t (45.88s)test-grep.t (23.75s)test-push-warn.t (56.30s)test-hgweb-annotate-whitespace.t (5.49s)test-remotefilelog-repack.t (39.51s)test-debugcommands.t (22.61s)test-remove.t (24.35s)test-rebase-inmemory.t (44.65s)test-clone-uncompressed.t#stream-bundle2 (22.72s)test-clone-uncompressed.t#stream-legacy (19.47s)test-alias.t (33.52s)test-ssh-bundle1.t#sshv1 (30.00s)test-ssh-bundle1.t#sshv2 (30.17s)test-mq-header-date.t (49.82s)test-wireproto-command-changesetdata.t (11.42s)test-pull-pull-corruption.t (15.56s)test-blackbox.t (13.84s)test-convert-svn-startrev.t (0.12s)test-devel-warnings.t (5.80s)test-backout.t (39.58s)test-push-http.t#bundle1 (19.94s)test-push-http.t#bundle2 (20.52s)test-check-format.t (0.49s)test-rebase-collapse.t (34.26s)test-contrib-relnotes.t (1.46s)test-update-branches.t (67.69s)test-audit-subrepo.t (24.22s)test-histedit-obsolete.t#abortcommand (29.58s)test-histedit-obsolete.t#abortflag (29.27s)test-histedit-arguments.t#abortcommand (28.18s)test-histedit-arguments.t#abortflag (28.12s)test-wireproto.t (10.65s)test-globalopts.t (12.38s)test-http-bundle1.t (20.02s)test-hgweb-descend-empties.t (2.50s)test-obshistory.t (29.80s)test-fncache.t (12.74s)test-rename.t (34.24s)test-uncommit.t (42.89s)test-mq-subrepo.t (54.01s)test-fastannotate-hg.t (30.77s)test-histedit-fold.t (33.10s)test-progress.t (5.04s)test-remotefilelog-repack-fast.t (35.10s)test-log-linerange.t (9.81s)test-extdiff.t (19.08s)test-getbundle.t (6.33s)test-largefiles-wireproto.t#sshv1 (32.77s)test-largefiles-wireproto.t#sshv2 (32.76s)test-status-color.t (20.00s)test-narrow.t#flat#lfs-off (45.82s)test-narrow.t#flat#lfs-on (53.55s)test-narrow.t#tree#lfs-off (46.38s)test-narrow.t#tree#lfs-on (53.50s)test-convert-hg-sink.t (27.14s)test-logexchange.t (17.91s)test-merge-types.t (14.10s)test-histedit-commute.t (15.97s)test-censor.t (36.40s)test-lfconvert.t (18.74s)test-histedit-edit.t (23.30s)test-remotefilelog-bgprefetch.t (33.99s)test-fetch.t (29.38s)test-copies.t#changeset (61.74s)test-copies.t#compatibility (61.98s)test-copies.t#filelog (61.95s)test-copies.t#sidedata (61.80s)test-wireproto-caching.t (6.49s)test-amend.t#obsstore-off (23.61s)test-amend.t#obsstore-on (24.09s)test-incoming-outgoing.t (15.26s)test-clone-pull-corruption.t (8.14s)test-eol.t (29.27s)test-rollback.t (22.27s)test-install.t (3.84s)test-newbranch.t (31.01s)test-bundle2-multiple-changegroups.t (8.18s)test-merge-criss-cross.t (16.73s)test-wireproto-command-manifestdata.t (6.88s)test-git-export.t (25.68s)test-infinitepush-ci.t (14.69s)test-status.t (33.78s)test-diff-color.t (7.86s)test-rebase-abort.t#abortcommand#continuecommand (31.01s)test-rebase-abort.t#abortcommand#continueflag (30.96s)test-rebase-abort.t#abortflag#continuecommand (30.81s)test-rebase-abort.t#abortflag#continueflag (30.76s)test-lfs-largefiles.t (15.64s)test-hgweb-empty.t (2.12s)test-dirstate-race2.t (2.00s)test-merge1.t (24.86s)test-infinitepush-bundlestore.t (22.40s)test-rebase-conflicts.t (15.07s)test-push.t (20.68s)test-rebase-newancestor.t (22.35s)test-convert-mtn.t (0.11s)test-copies-in-changeset.t#extra (18.98s)test-copies-in-changeset.t#sidedata (21.32s)test-narrow-shallow-merges.t (24.56s)test-mq-guards.t (37.58s)test-hghave.t (24.06s)test-convert-svn-tags.t (0.13s)test-pager.t (13.84s)test-completion.t (6.55s)test-wireproto-command-filedata.t (8.45s)test-qrecord.t (6.96s)test-mq-subrepo-svn.t (2.47s)test-revset-legacy-lookup.t (20.61s)test-copies-unrelated.t#changeset (39.12s)test-copies-unrelated.t#compatibility (39.15s)test-copies-unrelated.t#filelog (38.82s)test-copies-unrelated.t#sidedata (38.70s)test-rebase-interruptions.t (20.80s)test-absorb.t (26.61s)test-rebase-parameters.t (23.81s)test-hardlinks.t (15.73s)test-export.t (13.67s)test-issue3084.t (31.76s)test-merge-no-file-change.t (30.24s)test-verify.t (9.65s)test-narrow-patterns.t (18.42s)test-rebase-dest.t (23.83s)test-mq-qpush-fail.t (30.41s)test-narrow-widen-no-ellipsis.t#flat (32.64s)test-narrow-widen-no-ellipsis.t#tree (33.28s)test-bundle-r.t (23.66s)test-rebase-pull.t (20.12s)test-exchange-obsmarkers-case-A1.t (19.03s)test-branch-change.t (24.96s)test-sparse.t (24.32s)test-commit-interactive-curses.t (16.07s)test-rebase-named-branches.t (18.72s)test-fix-topology.t#obsstore-off (13.12s)test-fix-topology.t#obsstore-on (15.08s)test-import-bypass.t (19.25s)test-revert-interactive.t (13.90s)test-parse-date.t (22.75s)test-treediscovery-legacy.t (23.99s)test-narrow-widen.t#flat (32.65s)test-narrow-widen.t#tree (32.64s)test-rebase-cache.t (25.00s)test-journal.t (7.94s)test-help-hide.t (0.51s)test-releasenotes-formatting.t (13.50s)test-mq-qrefresh.t (19.35s)test-histedit-fold-non-commute.t (16.86s)test-gendoc-pt_BR.t (4.67s)test-gendoc-zh_CN.t (4.52s)test-gendoc-zh_TW.t (4.53s)test-exchange-obsmarkers-case-A3.t (19.70s)test-mq-qrefresh-interactive.t (4.43s)test-chg.t (0.10s)test-wireproto-command-rawstorefiledata.t (3.77s)test-static-http.t (12.61s)test-histedit-non-commute.t (16.22s)test-hgignore.t (11.67s)test-githelp.t (17.58s)test-win32text.t (11.85s)test-exchange-obsmarkers-case-C3.t (12.60s)test-gendoc-it.t (4.51s)test-gendoc-el.t (4.51s)test-gendoc-fr.t (4.53s)test-gendoc-ru.t (4.64s)test-gendoc-sv.t (4.55s)test-gendoc-da.t (4.49s)test-share-bookmarks.t#svfs (14.29s)test-share-bookmarks.t#vfs (14.31s)test-mq-qnew.t (25.21s)test-bheads.t (27.91s)test-flagprocessor.t (19.54s)test-diff-ignore-whitespace.t (15.78s)test-bookflow.t (26.94s)test-config.t (12.37s)test-http-api.t (4.34s)test-largefiles-cache.t (16.79s)test-encoding.t (7.34s)test-rebase-rename.t (18.04s)test-convert-bzr-merges.t (0.10s)test-mq-qimport.t (20.78s)test-manifest.t (13.84s)test-url-rev.t (15.19s)test-diff-unified.t (10.27s)test-mq-qrefresh-replace-log-message.t (14.32s)test-unamend.t (24.07s)test-init.t (40.65s)test-pager-legacy.t (9.86s)test-rebase-base-flag.t (16.04s)test-histedit-base.t (8.47s)test-parseindex.t (4.98s)test-clone-r.t (13.42s)test-bad-extension.t (2.13s)test-hgweb-raw.t (4.73s)test-rebase-mq.t (18.89s)test-exchange-obsmarkers-case-D1.t (12.00s)test-hgweb-removed.t (2.33s)test-eol-patch.t (7.79s)test-automv.t (31.58s)test-exchange-obsmarkers-case-C2.t (11.74s)test-single-head.t (13.99s)test-ssh-clone-r.t#sshv1 (13.14s)test-ssh-clone-r.t#sshv2 (13.13s)test-subrepo-relative-path.t (11.54s)test-hgrc.t (6.72s)test-casecollision-merge.t (0.10s)test-http-clone-r.t (12.06s)test-convert-bzr.t (0.10s)test-bookmarks-corner-case.t (9.04s)test-rename-dir-merge.t (14.29s)test-strip-cross.t (19.71s)test-add.t (21.31s)test-histedit-no-change.t (12.01s)test-narrow-clone.t (32.66s)test-diffstat.t (13.95s)test-convert-splicemap.t (11.90s)test-http-proxy.t (4.98s)test-removeemptydirs.t (13.12s)test-fileset-generated.t (7.45s)test-bundle-phases.t (17.43s)test-exchange-obsmarkers-case-C1.t (10.97s)test-status-rev.t (6.68s)test-diff-upgrade.t (5.09s)test-pull-update.t (14.15s)test-copy.t (15.90s)test-bisect3.t (9.79s)test-conflict.t (8.27s)test-remotefilelog-prefetch.t (29.04s)test-up-local-change.t (13.54s)test-dispatch.t (10.86s)test-narrow-exchange.t#lfs-off (11.31s)test-narrow-exchange.t#lfs-on (12.86s)test-obsolete-changeset-exchange.t (8.51s)test-exchange-obsmarkers-case-D4.t (9.65s)test-eol-update.t (6.99s)test-remotefilelog-push-pull.t (18.88s)test-pull-bundle.t (9.31s)test-share.t (10.53s)test-narrow-exchange-merges.t (11.49s)test-absorb-rename.t (14.50s)test-exchange-obsmarkers-case-B5.t (11.94s)test-churn.t (10.37s)test-pull-branch.t (13.64s)test-eol-hook.t (9.36s)test-bundle-type.t (15.62s)test-remotefilelog-linknodes.t (16.42s)test-notify-changegroup.t (5.19s)test-narrow-trackedcmd.t#flat (10.37s)test-narrow-trackedcmd.t#tree (10.47s)test-byteify-strings.t (0.92s)test-rebase-detach.t (14.37s)test-stream-bundle-v2.t (4.26s)test-sparse-profiles.t (10.99s)test-mq-qpush-exact.t (24.35s)test-fastannotate-protocol.t (9.84s)test-hybridencode.py (0.30s)test-rebase-bookmarks.t (16.67s)test-bookmarks-current.t (17.04s)test-convert-hg-source.t (13.77s)test-encoding-align.t (5.86s)test-debugbuilddag.t (6.50s)test-convert-baz.t (0.11s)test-inherit-mode.t (2.25s)test-infinitepush.t (16.56s)test-histedit-non-commute-abort.t (8.27s)test-releasenotes-merging.t (6.81s)test-remotefilelog-gcrepack.t (10.27s)test-convert-hg-startrev.t (10.51s)test-show-work.t (22.76s)test-narrow-strip.t#flat#lfs-off (7.78s)test-narrow-strip.t#flat#lfs-on (8.93s)test-narrow-strip.t#tree#lfs-off (7.78s)test-narrow-strip.t#tree#lfs-on (8.83s)test-repo-compengines.t (10.24s)test-merge-commit.t (8.00s)test-audit-path.t (13.92s)test-exchange-obsmarkers-case-B4.t (11.78s)test-fastannotate.t (12.58s)test-narrow-expanddirstate.t (6.27s)test-purge.t (11.82s)test-symlinks.t (12.97s)test-exchange-obsmarkers-case-C4.t (9.89s)test-sparse-revlog.t (0.12s)test-mq-safety.t (14.94s)test-directaccess.t (9.92s)test-exchange-obsmarkers-case-A6.t (10.69s)test-exchange-obsmarkers-case-A5.t (9.72s)test-remotefilelog-local.t (18.34s)test-basic.t (7.30s)test-narrow-share.t#flat (28.90s)test-narrow-share.t#tree (28.67s)test-hgweb-csp.t (6.76s)test-histedit-bookmark-motion.t (7.26s)test-obsolete-tag-cache.t (5.20s)test-diff-binary-file.t (6.83s)test-casefolding.t (0.10s)test-mq-git.t (7.00s)test-mq-qfold.t (11.12s)test-remotefilelog-cacheprocess.t (4.57s)test-patchbomb-bookmark.t (4.03s)test-stack.t (13.61s)test-journal-share.t (6.90s)test-paths.t (14.12s)test-contrib-testparseutil.t (0.36s)test-hgweb-no-request-uri.t (1.50s)test-sparse-merges.t (12.17s)test-pathconflicts-merge.t (12.29s)test-releasenotes-parsing.t (2.64s)test-diff-indent-heuristic.t#bdiff (0.82s)test-diff-indent-heuristic.t#xdiff (1.09s)test-import-merge.t (12.66s)test-drawdag.t (9.53s)test-patchbomb-tls.t (4.13s)test-exchange-obsmarkers-case-B2.t (8.94s)test-convert-p4.t (0.11s)test-show-stack.t (22.51s)test-narrow-clone-nonlinear.t (22.52s)test-mq-eol.t (6.56s)test-exchange-obsmarkers-case-A4.t (8.08s)test-convert-bzr-directories.t (0.12s)test-obsmarkers-effectflag.t (21.72s)test-rename-merge1.t (21.72s)test-fastannotate-renames.t (9.75s)test-histedit-drop.t (6.30s)test-rebase-mq-skip.t#continuecommand (21.15s)test-rebase-mq-skip.t#continueflag (21.04s)test-bookmarks-merge.t (20.73s)test-lock-badness.t (10.24s)test-repair-strip.t (5.81s)test-histedit-outgoing.t (8.91s)test-pull.t#sshv1 (7.35s)test-pull.t#sshv2 (7.37s)test-exchange-obsmarkers-case-B6.t (8.49s)test-merge-default.t (8.60s)test-extension-timing.t (0.96s)test-match.py (0.25s)test-rebase-emptycommit.t (8.96s)test-cbor.py (0.85s)test-debugbundle.t (3.28s)test-copy-move-merge.t (18.68s)test-profile.t (18.19s)test-convert-tla.t (1.54s)test-mq-qclone-http.t (16.24s)test-exchange-obsmarkers-case-A2.t (15.86s)test-exchange-obsmarkers-case-D2.t (15.83s)test-status-terse.t (15.61s)test-merge7.t (3.94s)test-phase-archived.t (14.64s)test-hgweb-no-path-info.t (1.45s)test-subrepo-missing.t (14.05s)test-pathconflicts-update.t (13.75s)test-show.t (13.26s)test-addremove-similar.t (13.39s)test-contrib.t (1.75s)test-unionrepo.t (13.13s)test-flags.t (12.97s)test-remotefilelog-gc.t (12.91s)test-commit-multiple.t (12.66s)test-commit-unresolved.t#abortcommand (12.28s)test-commit-unresolved.t#abortflag (12.03s)test-import-eol.t (11.66s)test-logtoprocess.t (11.62s)test-mq-missingfiles.t (11.80s)test-sparse-import.t (11.46s)test-rebase-transaction.t#continuecommand (11.58s)test-rebase-transaction.t#continueflag (11.44s)test-identify.t (11.15s)test-default-push.t (10.49s)test-merge-subrepos.t (10.34s)test-narrow-clone-no-ellipsis.t (21.67s)test-filebranch.t (4.86s)test-mq-qdelete.t (14.70s)test-convert-datesort.t (8.57s)test-sidedata.t (4.33s)test-mq-merge.t (9.42s)test-pull-r.t (8.33s)test-update-atomic.t (3.76s)test-clone-update-order.t (5.90s)test-pending.t (7.47s)test-fastannotate-perfhack.t (9.51s)test-origbackup-conflict.t (5.84s)test-narrow-pull.t (18.57s)test-merge-local.t (6.92s)test-remotefilelog-http.t (6.62s)test-bugzilla.t (2.44s)test-exchange-obsmarkers-case-D3.t (8.96s)test-narrow-shallow.t (19.25s)test-remote-hidden.t (6.18s)test-worker.t (2.77s)test-branch-option.t (10.00s)test-mac-packages.t (0.19s)test-merge-halt.t (6.47s)test-empty-group.t (5.11s)test-parents.t (6.65s)test-fix-metadata.t (0.85s)test-children.t (6.74s)test-http-branchmap.t (4.38s)test-diff-change.t (7.75s)test-extdata.t (7.51s)test-bundle2-pushback.t#sshv1 (4.14s)test-bundle2-pushback.t#sshv2 (4.17s)test-rebuildstate.t (6.90s)test-narrow-merge.t#flat (8.50s)test-narrow-merge.t#tree (8.60s)test-mq-pull-from-bundle.t (8.02s)test-exchange-obsmarkers-case-B3.t (8.01s)test-remotefilelog-corrupt-cache.t (5.45s)test-amend-subrepo.t#obsstore-off (8.96s)test-amend-subrepo.t#obsstore-on (8.67s)test-merge-internal-tools-pattern.t (5.62s)test-run-tests.py (0.22s)test-issue672.t (3.74s)test-extensions-afterloaded.t (5.11s)test-tools.t (1.21s)test-fastannotate-corrupt.t (4.69s)test-narrow-commit.t#flat (9.55s)test-narrow-commit.t#tree (9.59s)test-eol-clone.t (3.15s)test-wireproto-serverreactor.py (0.32s)test-excessive-merge.t (4.83s)test-relink.t (3.34s)test-mq-qqueue.t (11.40s)test-narrow-rebase.t#continuecommand (7.93s)test-narrow-rebase.t#continueflag (8.11s)test-push-cgi.t (2.06s)test-record.t (1.30s)test-convert-darcs.t (0.92s)test-remotefilelog-clone-tree.t (5.12s)test-patch.t (4.02s)test-hgweb-non-interactive.t (1.19s)test-sqlitestore.t (2.52s)test-remotefilelog-clone.t (4.99s)test-arbitraryfilectx.t (2.47s)test-remotefilelog-sparse.t (13.48s)test-cache-abuse.t (15.99s)test-rebase-backup.t (6.05s)test-simple-update.t (6.99s)test-pathconflicts-basic.t (6.88s)test-committer.t (4.95s)test-exchange-obsmarkers-case-B7.t (7.63s)test-pull-http.t (4.44s)test-remotefilelog-bundle2-legacy.t (0.71s)test-exchange-obsmarkers-case-B1.t (7.74s)test-remotefilelog-log.t (6.36s)test-mq-qdiff.t (6.93s)test-bookmarks-rebase.t (5.90s)test-serve.t (6.52s)test-exchange-obsmarkers-case-A7.t (6.64s)test-revset-outgoing.t (4.92s)test-import-context.t (2.14s)test-remotefilelog-bundle2.t (7.07s)test-eol-add.t (3.70s)test-bundle-vs-outgoing.t (5.14s)test-rebase-partial.t (4.92s)test-update-names.t (6.76s)test-mailmap.t (4.30s)test-remotefilelog-bundles.t (5.85s)test-merge-remove.t (6.50s)test-convert-tagsbranch-topology.t (1.57s)test-requires.t (3.64s)test-locate.t (9.35s)test-merge-closedheads.t (8.42s)test-rename-after-merge.t (7.05s)test-wireproto-clientreactor.py (0.32s)test-contrib-dumprevlog.t (3.75s)test-remotefilelog-pull-noshallow.t (3.99s)test-debugextensions.t (1.58s)test-narrow-clone-stream.t#flat-fncache (22.78s)test-narrow-clone-stream.t#flat-nofncache (22.49s)test-narrow-clone-stream.t#tree (22.43s)test-rebase-legacy.t#continuecommand (1.70s)test-rebase-legacy.t#continueflag (1.45s)test-issue1306.t (3.40s)test-lfs-bundle.t (6.54s)test-issue1175.t (6.55s)test-cat.t (8.55s)test-nointerrupt.t (4.81s)test-issue660.t (7.02s)test-largefiles-small-disk.t (1.86s)test-convert-clonebranches.t (5.79s)test-oldcgi.t (1.65s)test-impexp-branch.t (4.92s)test-narrow-clone-non-narrow-server.t (9.40s)test-histedit-no-backup.t#abortcommand (2.97s)test-histedit-no-backup.t#abortflag (2.96s)test-issue586.t (6.15s)test-unified-test.t (0.87s)test-rebase-templates.t (4.05s)test-remotefilelog-tags.t (4.66s)test-symlink-placeholder.t (3.62s)test-merge6.t (4.64s)test-narrow-copies.t (6.63s)test-server-view.t (4.84s)test-rebase-issue-noparam-single-rev.t (6.19s)test-dirstate.t (4.29s)test-close-head.t (5.11s)test-url-download.t (4.85s)test-merge-revert2.t (8.64s)test-verify-repo-operations.py (0.14s)test-addremove.t (6.21s)test-mq-qrename.t (11.07s)test-narrow-update.t (6.28s)test-mq-symlinks.t (8.95s)test-ssh-repoerror.t (5.20s)test-wsgirequest.py (0.41s)test-double-merge.t (2.38s)test-narrow-patch.t#flat (3.00s)test-narrow-patch.t#tree (3.14s)test-glog-topological.t (2.42s)test-sparse-verbose-json.t (3.75s)test-merge9.t (4.90s)test-context-metadata.t (2.88s)test-patch-offset.t (0.88s)test-log-exthook.t (1.34s)test-newcgi.t (1.16s)test-issue1802.t (3.81s)test-update-reverse.t (3.36s)test-wireproto-command-branchmap.t (3.40s)test-pushvars.t (3.01s)test-histedit-templates.t (2.64s)test-hgwebdirsym.t (4.22s)test-manifest.py (2.69s)test-revlog-raw.py (0.73s)test-merge-symlinks.t (1.90s)test-branch-tag-confict.t (2.63s)test-narrow-debugcommands.t (3.30s)test-custom-filters.t (2.30s)test-sparse-clone.t (2.11s)test-issue2137.t (1.07s)test-remotefilelog-partial-shallow.t (3.88s)test-eolfilename.t (3.00s)test-merge10.t (3.73s)test-journal-exists.t (2.90s)test-revlog-v2.t (2.21s)test-diffdir.t (5.37s)test-schemes.t (3.19s)test-issue522.t (3.10s)test-histedit-merge-tools.t (2.39s)test-mq-qgoto.t (7.47s)test-revlog.t (1.77s)test-newercgi.t (1.23s)test-url.py (0.26s)test-editor-filename.t (1.84s)test-import-unknown.t (5.75s)test-unbundlehash.t (2.18s)test-narrow-sparse.t#flat (3.56s)test-narrow-sparse.t#tree (3.65s)test-wireproto-command-known.t (2.52s)test-missing-capability.t (3.00s)test-wireproto-command-listkeys.t (3.04s)test-convert-identity.t (3.35s)test-merge-revert.t (8.64s)test-wireproto-command-heads.t (2.74s)test-encode.t (3.58s)test-permissions.t (2.73s)test-casecollision.t (5.64s)test-ancestor.py (1.09s)test-update-dest.t (2.86s)test-known.t (4.32s)test-sparse-fsmonitor.t (0.02s)test-no-symlinks.t (0.10s)test-remotefilelog-datapack.py (1.78s)test-convert-authormap.t (1.95s)test-subrepo-paths.t (1.91s)test-sparse-requirement.t (1.87s)test-confused-revert.t (4.84s)test-remotefilelog-permissions.t (4.57s)test-fuzz-targets.t (0.38s)test-issue1993.t (2.36s)test-issue1502.t (3.02s)test-clone-cgi.t (1.17s)test-sparse-clear.t (2.73s)test-simplemerge.py (0.21s)test-websub.t (1.80s)test-rebase-brute-force.t (2.44s)test-revlog-mmapindex.t (18.32s)test-merge2.t (5.82s)test-diff-antipatience.t#bdiff (0.88s)test-diff-antipatience.t#xdiff (1.16s)test-issue1877.t (4.05s)test-gpg.t (2.12s)test-empty-file.t (3.33s)test-lrucachedict.py (0.23s)test-changelog-exec.t (2.98s)test-hgk.t (2.40s)test-diff-hashes.t (2.38s)test-debian-packages.t (0.39s)test-absorb-edit-lines.t (2.85s)test-remotefilelog-wireproto.t (4.05s)test-mactext.t (1.35s)test-convert-bzr-ghosts.t (0.10s)test-docker-packaging.t (0.26s)test-bookmarks-strip.t (3.25s)test-narrow-acl.t (3.57s)test-remotefilelog-keepset.t (3.12s)test-lock.py (0.25s)test-remotefilelog-histpack.py (3.88s)test-remotefilelog-bad-configs.t (3.08s)test-diff-subdir.t (2.08s)test-convert-bzr-114.t (0.10s)test-trusted.py (0.32s)test-narrow-debugrebuilddirstate.t (2.36s)test-unrelated-pull.t (2.39s)test-parseindex2.py (0.41s)test-diff-reverse.t (2.58s)test-revset-dirstate-parents.t (5.54s)test-wireproto-command-pushkey.t (1.95s)test-update-issue1456.t (3.52s)test-empty.t (1.75s)test-merge5.t (3.12s)test-wireproto-framing.py (0.24s)test-narrow-archive.t (3.46s)test-diff-copy-depth.t (5.01s)test-convert-bzr-treeroot.t (0.12s)test-hgweb-bundle.t (2.13s)test-absorb-unfinished.t (1.63s)test-mq-qimport-fail-cleanup.t (1.90s)test-linerange.py (0.24s)test-fix-clang-format.t (1.56s)test-manifest-merging.t (2.19s)test-issue619.t (2.35s)test-merge8.t (2.37s)test-issue842.t (2.38s)test-remotefilelog-blame.t (4.08s)test-linelog.py (2.76s)test-filecache.py (1.20s)test-revlog-group-emptyiter.t (1.67s)test-propertycache.py (0.66s)test-pathencode.py (0.60s)test-demandimport.py (0.43s)test-archive-symlinks.t (1.62s)test-absorb-strip.t (1.49s)test-pull-permission.t (1.46s)test-issue5979.t (2.98s)test-rust-ancestor.py (0.21s)test-revisions.t (3.99s)test-merge4.t (2.51s)test-absorb-filefixupstate.py (0.42s)test-wireproto-command-lookup.t (1.60s)test-phabricator.t (0.50s)test-context.py (0.50s)test-issue612.t (2.35s)test-debugindexdot.t (2.49s)test-eol-tag.t (1.63s)test-batching.py (0.35s)test-bdiff.py (0.24s)test-hgweb-auth.py (0.22s)test-nested-repo.t (2.96s)test-minirst.py (0.27s)test-execute-bit.t (2.67s)test-username-newline.t (1.01s)test-fastannotate-revmap.py (0.44s)test-issue4074.t (2.06s)test-remotefilelog-share.t (2.44s)test-revlog-packentry.t (1.30s)test-dirstate-nonnormalset.t (2.05s)test-ui-config.py (0.49s)test-diff-issue2761.t (2.31s)test-atomictempfile.py (0.25s)test-strict.t (2.10s)test-util.py (0.24s)test-diff-newlines.t (1.07s)test-rust-discovery.py (0.20s)test-empty-dir.t (1.55s)test-storage.py (1.74s)test-absorb-phase.t (2.01s)test-annotate.py (0.27s)test-extra-filelog-entry.t (1.70s)test-debugrename.t (2.16s)test-issue1438.t (2.16s)test-issue1102.t (1.90s)test-fastannotate-diffopts.t (1.10s)test-revert-unknown.t (1.92s)test-bad-pull.t (1.55s)test-revert-flags.t (1.60s)test-simplekeyvaluefile.py (0.26s)test-issue1089.t (1.62s)test-doctest.py (1.10s)test-backwards-remove.t (1.42s)test-wireproto.py (0.32s)test-contrib-emacs.t (0.37s)test-cappedreader.py (0.23s)test-xdg.t (0.34s)test-dirstate-backup.t (0.52s)test-mq-qsave.t (1.21s)test-encoding-func.py (0.20s)test-extensions-wrapfunction.py (0.31s)test-walkrepo.py (0.43s)test-revlog-ancestry.py (0.53s)test-ui-verbosity.py (0.37s)test-filelog.py (0.42s)test-sshserver.py (0.34s)test-hg-parseurl.py (0.39s)test-symlink-os-yes-fs-no.py (1.43s)test-minifileset.py (0.30s)test-config-env.py (0.30s)test-lfs-pointer.py (0.39s)test-duplicateoptions.py (0.48s)test-hgwebdir-paths.py (0.35s)test-ui-color.py (0.33s)test-status-inprocess.py (0.31s)test-dispatch.py (0.40s)test-mdiff.py (0.23s)