Job try-b78cfa589c8c93015b82d1b014890a4636080815-debian10-cpython-3.6-0

Repo:try
Node:b78cfa589c8c93015b82d1b014890a4636080815
Name:debian10-cpython-3.6
Scheduled At:2019-10-16T02:59:42
Started At:2019-10-16T02:59:46
Finished At:2019-10-16T03:07:46

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-module-imports.t

--- /hgwork/src/tests/test-check-module-imports.t
+++ /hgwork/src/tests/test-check-module-imports.t.err
@@ -38,3 +38,20 @@
   > -X tests/test-imports-checker.t    > -X tests/test-verify-repo-operations.py    > | sed 's-\-/-g' | "$PYTHON" "$import_checker" -
+  contrib/ci/lambda_functions/ci.py:20: direct symbol import Key from boto3.dynamodb.conditions
+  contrib/ci/lambda_functions/web.py:15: direct symbol import Key from boto3.dynamodb.conditions
+  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-convert-tla.t

--- /hgwork/src/tests/test-convert-tla.t
+++ /hgwork/src/tests/test-convert-tla.t.err
@@ -96,15 +96,8 @@
   $ hg convert tla-repo tla-repo-hg
   initializing destination tla-repo-hg repository
   analyzing tree version tla@mercurial--convert/tla--test--0...
-  scanning source...
-  sorting...
-  converting...
-  5 initial import
-  4 added a file, src and src/b (binary)
-  3 added link to a and modify a
-  2 added second link and modify b
-  1 file to link and link to file test
-  0 move and rename a-link-2 file and src directory
+  abort: could not parse cat-log of tla@mercurial--convert/tla--test--0--patch-5
+  [255]
   $ tla register-archive -d tla@mercurial--convert
   $ glog()
   > {
@@ -114,21 +107,5 @@
 show graph log
 
   $ glog -R tla-repo-hg
-  o  5 "move and rename a-link-2 file and src directory" files: c src/a-link src/a-link-2 src/b test/a-link test/b
-  |
-  o  4 "file to link and link to file test" files: src/a-link-2 src/b
-  |
-  o  3 "added second link and modify b" files: src/a-link-2 src/b
-  |
-  o  2 "added link to a and modify a" files: a src/a-link
-  |
-  o  1 "added a file, src and src/b (binary)" files: a src/b
-  |
-  o  0 "initial import" files:
-  
   $ hg up -q -R tla-repo-hg
   $ hg -R tla-repo-hg manifest --debug
-  c4072c4b72e1cabace081888efa148ee80ca3cbb 644   a
-  0201ac32a3a8e86e303dff60366382a54b48a72e 644   c
-  c0067ba5ff0b7c9a3eb17270839d04614c435623 644 @ test/a-link
-  375f4263d86feacdea7e3c27100abd1560f2a973 644 @ test/b

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-hook.t

--- /hgwork/src/tests/test-hook.t
+++ /hgwork/src/tests/test-hook.t.err
@@ -978,9 +978,24 @@
   SyntaxError: * (glob)
   exception from second failed import attempt:
   Traceback (most recent call last):
-  ImportError: No module named hgext_syntaxerror
+  SyntaxError: unexpected EOF while parsing
+  
+  During handling of the above exception, another exception occurred:
+  
   Traceback (most recent call last):
-  HookLoadError: preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed
+  ModuleNotFoundError: No module named 'hgext_syntaxerror'
+  Traceback (most recent call last):
+  SyntaxError: unexpected EOF while parsing
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+  ModuleNotFoundError: No module named 'hgext_syntaxerror'
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+  mercurial.error.HookLoadError: b'preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed'
   abort: preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed
 
   $ echo '[hooks]' > ../a/.hg/hgrc
@@ -1113,7 +1128,7 @@
 
   $ hg id
   loading pre-identify.npmd hook failed:
-  abort: No module named repo!
+  abort: No module named 'repo'!
   [255]
 
   $ cd ../../b
@@ -1133,12 +1148,27 @@
   $ hg --traceback commit -ma 2>&1 | egrep -v '^( +File|    [a-zA-Z(])'
   exception from first failed import attempt:
   Traceback (most recent call last):
-  ImportError: No module named somebogusmodule
+  ModuleNotFoundError: No module named 'somebogusmodule'
   exception from second failed import attempt:
   Traceback (most recent call last):
-  ImportError: No module named hgext_importfail
+  ModuleNotFoundError: No module named 'somebogusmodule'
+  
+  During handling of the above exception, another exception occurred:
+  
   Traceback (most recent call last):
-  HookLoadError: precommit.importfail hook is invalid: import of "importfail" failed
+  ModuleNotFoundError: No module named 'hgext_importfail'
+  Traceback (most recent call last):
+  ModuleNotFoundError: No module named 'somebogusmodule'
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+  ModuleNotFoundError: No module named 'hgext_importfail'
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+  mercurial.error.HookLoadError: b'precommit.importfail hook is invalid: import of "importfail" failed'
   abort: precommit.importfail hook is invalid: import of "importfail" failed
 
 Issue1827: Hooks Update & Commit not completely post operation

test-install.t

--- /hgwork/src/tests/test-install.t
+++ /hgwork/src/tests/test-install.t.err
@@ -155,12 +155,132 @@
 
 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, Oct 16 2019, 02:23:51) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.1.2+560-b78cfa589c8c)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 848, in _resolvesockname
+      raise WatchmanError("watchman exited with code %d" % exitcode)
+  hgext.fsmonitor.pywatchman.WatchmanError: watchman exited with code 1
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 103, in _command
+      raise Unavailable(str(ex))
+  hgext.fsmonitor.watchmanclient.Unavailable: <exception str() failed>
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 27, in __str__
+      return b'warning: Watchman unavailable: %s' % self.msg
+  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
-    "fsmonitor-watchman": "false",
-    "fsmonitor-watchman-error": "warning: Watchman unavailable: watchman exited with code 1",
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.6.9 (default, Oct 16 2019, 02:23:51) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.1.2+560-b78cfa589c8c)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 848, in _resolvesockname
+      raise WatchmanError("watchman exited with code %d" % exitcode)
+  hgext.fsmonitor.pywatchman.WatchmanError: watchman exited with code 1
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 103, in _command
+      raise Unavailable(str(ex))
+  hgext.fsmonitor.watchmanclient.Unavailable: <exception str() failed>
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 27, in __str__
+      return b'warning: Watchman unavailable: %s' % self.msg
+  TypeError: %b requires a bytes-like object, or an object that implements __bytes__, not 'str'
+  [1]
 
 
 #if test-repo

test-lfs-serve-access.t

--- /hgwork/src/tests/test-lfs-serve-access.t
+++ /hgwork/src/tests/test-lfs-serve-access.t.err
@@ -354,7 +354,7 @@
   $LOCALIP - - [$ERRDATE$] HG error:      localstore.download(oid, req.bodyfh) (glob)
   $LOCALIP - - [$ERRDATE$] HG error:      super(badstore, self).download(oid, src) (glob)
   $LOCALIP - - [$ERRDATE$] HG error:      _(b'corrupt remote lfs object: %s') % oid (glob)
-  $LOCALIP - - [$ERRDATE$] HG error:  LfsCorruptionError: corrupt remote lfs object: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c (glob)
+  $LOCALIP - - [$ERRDATE$] HG error:  hgext.lfs.blobstore.LfsCorruptionError: b'corrupt remote lfs object: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c'
   $LOCALIP - - [$ERRDATE$] HG error:   (glob)
   $LOCALIP - - [$ERRDATE$] Exception happened during processing request '/.hg/lfs/objects/276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d': (glob)
   Traceback (most recent call last):
@@ -362,8 +362,8 @@
       self.do_hgweb()
       for chunk in self.server.application(env, self._start_response):
       for r in self._runwsgi(req, res, repo):
+      return func(*(args + a), **kw) (no-py3 !)
       rctx, req, res, self.check_perm
-      return func(*(args + a), **kw) (no-py3 !)
       rctx.repo, req, res, lambda perm: checkperm(rctx, req, perm)
       res.setbodybytes(localstore.read(oid))
       blob = self._read(self.vfs, oid, verify)
@@ -376,7 +376,7 @@
   $LOCALIP - - [$ERRDATE$] HG error:      blob = self._read(self.vfs, oid, verify) (glob)
   $LOCALIP - - [$ERRDATE$] HG error:      blobstore._verify(oid, b'dummy content') (glob)
   $LOCALIP - - [$ERRDATE$] HG error:      hint=_(b'run hg verify'), (glob)
-  $LOCALIP - - [$ERRDATE$] HG error:  LfsCorruptionError: detected corrupt lfs object: 276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d (glob)
+  $LOCALIP - - [$ERRDATE$] HG error:  hgext.lfs.blobstore.LfsCorruptionError: b'detected corrupt lfs object: 276f73cfd75f9fb519810df5f5d96d6594ca2521abd86cbcd92122f7d51a1f3d'
   $LOCALIP - - [$ERRDATE$] HG error:   (glob)
 
 Basic Authorization headers are returned by the Batch API, and sent back with

test-notify.t

--- /hgwork/src/tests/test-notify.t
+++ /hgwork/src/tests/test-notify.t.err
@@ -419,39 +419,38 @@
   $ echo a >> a/a
   $ hg --cwd a --encoding utf-8 commit -A -d '0 0'    >   -m `"$PYTHON" -c 'print("àáâãä")'`
+  Traceback (most recent call last):
+    File "<string>", line 1, in <module>
+  UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-9: ordinal not in range(128)
+  hg commit: option -m requires argument
+  hg commit [OPTION]... [FILE]...
+  
+  commit the specified files or all outstanding changes
+  
+  options ([+] can be repeated):
+  
+   -A --addremove           mark new/missing files as added/removed before
+                            committing
+      --close-branch        mark a branch head as closed
+      --amend               amend the parent of the working directory
+   -s --secret              use the secret phase for committing
+   -e --edit                invoke editor on commit messages
+   -i --interactive         use interactive mode
+   -I --include PATTERN [+] include names matching the given patterns
+   -X --exclude PATTERN [+] exclude names matching the given patterns
+   -m --message TEXT        use text as commit message
+   -l --logfile FILE        read commit message from file
+   -d --date DATE           record the specified date as commit date
+   -u --user USER           record the specified user as committer
+   -S --subrepos            recurse into subrepositories
+  
+  (use 'hg commit -h' to show more help)
+  [255]
   $ hg --traceback --cwd b --encoding utf-8 pull ../a |    >   "$PYTHON" $TESTTMP/filter.py
   pulling from ../a
   searching for changes
-  adding changesets
-  adding manifests
-  adding file changes
-  added 1 changesets with 1 changes to 1 files
-  new changesets 0f25f9c22b4c
-  MIME-Version: 1.0
-  Content-Type: text/plain; charset="us-ascii"
-  Content-Transfer-Encoding: 8bit
-  X-Test: foo
-  Date: * (glob)
-  Subject: à... (esc)
-  From: test@test.com
-  X-Hg-Notification: changeset 0f25f9c22b4c
-  Message-Id: <*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset 0f25f9c22b4c in b
-  description: àáâãä (esc)
-  diffstat:
-   a |  1 + 1 files changed, 1 insertions(+), 0 deletions(-)
-  
-  diffs (7 lines):
-  
-  diff -r fccf66cd0c35 -r 0f25f9c22b4c a
-  --- a/a	Thu Jan 01 00:00:03 1970 +0000
-  +++ b/a	Thu Jan 01 00:00:00 1970 +0000
-  @@ -1,2 +1,3 @@ a a
-  +a
-  (run 'hg update' to get a working copy)
+  no changes found
 
 long lines
 
@@ -470,48 +469,31 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets a846b5f6ebb7
-  notify: sending 2 subscribers 1 changes
+  new changesets 3ebb3db918ca
+  error: incoming.notify hook failed: decoding near 'nononononoф': 'ascii' codec can't decode byte 0xd1 in position 1329: ordinal not in range(128)! (esc)
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/encoding.py", line 205, in fromlocal
+      u = s.decode(_sysstr(encoding), _sysstr(encodingmode))
+  UnicodeDecodeError: 'ascii' codec can't decode byte 0xd1 in position 1329: ordinal not in range(128)
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/hook.py", line 114, in pythonhook
+      r = obj(ui=ui, repo=repo, hooktype=htype, **pycompat.strkwargs(args))
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/notify.py", line 553, in hook
+      n.send(ctx, count, data)
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/hgext/notify.py", line 387, in send
+      msg = p.parsestr(encoding.strfromlocal(data))
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/encoding.py", line 223, in unifromlocal
+      return fromlocal(s).decode('utf-8')
+    File "/hgwork/tmp/hgtests.73vt26j5/install/lib/python/mercurial/encoding.py", line 210, in fromlocal
+      b"decoding near '%s': %s!" % (sub, pycompat.bytestr(inst))
+  mercurial.error.Abort: b"decoding near 'nononononoф': 'ascii' codec can't decode byte 0xd1 in position 1329: ordinal not in range(128)!"
   (run 'hg update' to get a working copy)
   $ "$PYTHON" $TESTTMP/filter.py < b/mbox
-  From test@test.com ... ... .. ..:..:.. .... (re)
-  MIME-Version: 1.0
-  Content-Type: text/plain; charset="*" (glob)
-  Content-Transfer-Encoding: quoted-printable
-  X-Test: foo
-  Date: * (glob)
-  Subject: long line
-  From: test@test.com
-  X-Hg-Notification: changeset a846b5f6ebb7
-  Message-Id: <hg.a846b5f6ebb7.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset a846b5f6ebb7 in b
-  description: long line
-  diffstat:
-   a |  1 + 1 files changed, 1 insertions(+), 0 deletions(-)
-  
-  diffs (8 lines):
-  
-  diff -r 0f25f9c22b4c -r a846b5f6ebb7 a
-  --- a/a	Thu Jan 01 00:00:00 1970 +0000
-  +++ b/a	Thu Jan 01 00:00:00 1970 +0000
-  @@ -1,3 +1,4 @@ a a a
-  +nonononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nononononononononononononononononononononononononononononononononononononon=
-  ononononononononononononononononononononononononononononononononononononono=
-  nonononononononononononono=D1=84
-  
+  $TESTTMP.sh: 128: $TESTTMP.sh: cannot open b/mbox: No such file
+  [2]
  revset selection: send to address that matches branch and repo
 
   $ cat << EOF >> $HGRCPATH
@@ -540,7 +522,7 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets f7e5aaed4080
+  new changesets 773df7862791
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
@@ -548,11 +530,11 @@
   Date: * (glob)
   Subject: test
   From: test@test.com
-  X-Hg-Notification: changeset f7e5aaed4080
-  Message-Id: <hg.f7e5aaed4080.*.*@*> (glob)
+  X-Hg-Notification: changeset 773df7862791
+  Message-Id: <hg.773df7862791.1571195025.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
   To: baz@test.com, foo@bar, notify@example.com
   
-  changeset f7e5aaed4080 in b
+  changeset 773df7862791 in b
   description: test
   (run 'hg update' to get a working copy)
 
@@ -570,7 +552,7 @@
   adding manifests
   adding file changes
   added 1 changesets with 0 changes to 0 files (+1 heads)
-  new changesets 645eb6690ecf
+  new changesets 3422d33b4154
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
@@ -578,11 +560,11 @@
   Date: * (glob)
   Subject: test
   From: test@test.com
-  X-Hg-Notification: changeset 645eb6690ecf
-  Message-Id: <hg.645eb6690ecf.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset 645eb6690ecf in b
+  X-Hg-Notification: changeset 3422d33b4154
+  Message-Id: <hg.3422d33b4154.1571195026.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 3422d33b4154 in b
   description: test
   (run 'hg heads' to see heads)
 
@@ -599,12 +581,12 @@
   Date: * (glob)
   Subject: changeset in b: default template
   From: test@test.com
-  X-Hg-Notification: changeset 5cd4346eed47
-  Message-Id: <hg.5cd4346eed47.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset 5cd4346eed47 in $TESTTMP/b
-  details: http://test/b?cmd=changeset;node=5cd4346eed47
+  X-Hg-Notification: changeset 0ec1284fec67
+  Message-Id: <hg.0ec1284fec67.1571195026.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 0ec1284fec67 in $TESTTMP/b
+  details: http://test/b?cmd=changeset;node=0ec1284fec67
   description: default template
 
 with style:
@@ -628,11 +610,11 @@
   Date: * (glob)
   Subject: with style
   From: test@test.com
-  X-Hg-Notification: changeset ec8d9d852f56
-  Message-Id: <hg.ec8d9d852f56.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset ec8d9d852f56
+  X-Hg-Notification: changeset f35ab297a724
+  Message-Id: <hg.f35ab297a724.1571195027.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset f35ab297a724
 
 with template (overrides style):
 
@@ -649,10 +631,10 @@
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
   Date: * (glob)
-  Subject: 14721b538ae3: with template
-  From: test@test.com
-  X-Hg-Notification: changeset 14721b538ae3
-  Message-Id: <hg.14721b538ae3.*.*@*> (glob)
+  Subject: d4122a6521b3: with template
+  From: test@test.com
+  X-Hg-Notification: changeset d4122a6521b3
+  Message-Id: <hg.d4122a6521b3.1571195028.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
   To: baz@test.com, foo@bar
   
   with template
@@ -682,21 +664,21 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets b86bc16ff894
+  new changesets 22c4495f3535
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
   Date: * (glob)
   Subject: addfunction
   From: test@test.com
-  X-Hg-Notification: changeset b86bc16ff894
-  Message-Id: <hg.b86bc16ff894.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset b86bc16ff894
+  X-Hg-Notification: changeset 22c4495f3535
+  Message-Id: <hg.22c4495f3535.1571195028.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 22c4495f3535
   diffs (11 lines):
   
-  diff -r 14721b538ae3 -r b86bc16ff894 f1
+  diff -r d4122a6521b3 -r 22c4495f3535 f1
   --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
   +++ b/f1	Thu Jan 01 00:00:00 1970 +0000
   @@ -0,0 +1,7 @@
@@ -725,21 +707,21 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets e81040e9838c
+  new changesets 8d5aad01b98f
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
   Date: * (glob)
   Subject: changefunction
   From: test@test.com
-  X-Hg-Notification: changeset e81040e9838c
-  Message-Id: <hg.e81040e9838c.*.*@*> (glob)
-  To: baz@test.com, foo@bar
-  
-  changeset e81040e9838c
+  X-Hg-Notification: changeset 8d5aad01b98f
+  Message-Id: <hg.8d5aad01b98f.1571195029.7062276993443559649@ip-172-31-5-64.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 8d5aad01b98f
   diffs (12 lines):
   
-  diff -r b86bc16ff894 -r e81040e9838c f1
+  diff -r 22c4495f3535 -r 8d5aad01b98f f1
   --- a/f1	Thu Jan 01 00:00:00 1970 +0000
   +++ b/f1	Thu Jan 01 00:00:00 1970 +0000
   @@ -2,6 +2,6 @@ int main() {

Skipped Tests

Long Tests

DurationTest
167.4stest-merge-combination.t
127.2stest-revset.t
112.3stest-obsolete-bundle-strip.t
109.7stest-bookmarks-pushpull.t#b2-pushkey
109.6stest-bookmarks-pushpull.t#b2-binary
108.3stest-subrepo.t
103.1stest-obsolete.t
100.9stest-largefiles.t
96.4stest-log.t
95.1stest-template-functions.t
93.2stest-graft.t#abortcommand
93.0stest-graft.t#abortflag
88.4stest-largefiles-misc.t
87.4stest-mq.t
83.5stest-rebase-obsolete.t
83.0stest-glog-beautifygraph.t
82.8stest-glog.t
82.7stest-import.t
78.5stest-obsmarker-template.t
76.0stest-merge-tools.t
73.6stest-http-permissions.t
71.6stest-bundle2-exchange.t#sshv1
71.3stest-bundle2-exchange.t#sshv2
69.7stest-fix.t
66.7stest-commit-amend.t
66.7stest-shelve.t#stripbased
66.0stest-shelve.t#phasebased
65.6stest-update-branches.t
65.5stest-largefiles-update.t
63.7stest-revset2.t
63.5stest-rename-merge2.t
61.9stest-strip.t
60.7stest-bookmarks.t
60.5stest-copies.t#sidedata
60.4stest-copies.t#compatibility
60.2stest-copies.t#filelog
60.2stest-subrepo-git.t
60.1stest-copies.t#changeset
60.0stest-shelve2.t#phasebased#abortcommand#continuecommand
59.6stest-shelve2.t#phasebased#abortflag#continuecommand
59.4stest-shelve2.t#phasebased#abortflag#continueflag
59.4stest-shelve2.t#phasebased#abortcommand#continueflag
58.5stest-shelve2.t#stripbased#abortcommand#continuecommand
58.2stest-shelve2.t#stripbased#abortflag#continuecommand
58.0stest-shelve2.t#stripbased#abortcommand#continueflag
57.8stest-shelve2.t#stripbased#abortflag#continueflag
57.7stest-phases-exchange.t
57.5stest-check-pylint.t
57.0stest-merge-force.t
56.6stest-keyword.t
54.8stest-push-warn.t
54.8stest-template-basic.t
54.7stest-lfs.t
53.5stest-obsolete-divergent.t
53.2stest-push-race.t#strict
53.1stest-narrow.t#flat#lfs-on
53.0stest-push-race.t#unrelated
53.0stest-merge-changedelete.t
52.8stest-mq-subrepo.t
52.8stest-template-keywords.t
52.7stest-narrow.t#tree#lfs-on
52.4stest-mv-cp-st-diff.t
51.9stest-clone.t#sshv1
51.0stest-copytrace-heuristics.t
51.0stest-clone.t#sshv2
50.9stest-run-tests.t
50.7stest-annotate.t
50.5stest-transplant.t#continueflag
50.2stest-revert.t
50.2stest-transplant.t#commandmode
48.7stest-mq-header-date.t
47.7stest-convert-filemap.t
47.4stest-mq-header-from.t
47.3stest-bisect.t
45.2stest-narrow.t#tree#lfs-off
45.1stest-fileset.t
44.9stest-narrow.t#flat#lfs-off
43.9stest-resolve.t
43.4stest-rebase-inmemory.t
43.0stest-tags.t
42.7stest-template-map.t
41.7stest-uncommit.t
40.9stest-rebase-scenario-global.t
40.0stest-subrepo-deep-nested-change.t
39.6stest-init.t
39.4stest-tag.t
38.7stest-remotefilelog-repack.t
38.7stest-backout.t
38.1stest-treemanifest.t
37.4stest-treediscovery.t
36.9stest-contrib-perf.t
36.8stest-ssh-proto.t
36.6stest-mq-guards.t
36.0stest-branches.t
35.7stest-censor.t
35.5stest-hook.t
34.6stest-commit-interactive.t
34.6stest-remotefilelog-repack-fast.t
34.2stest-commit.t
34.0stest-hgwebdir.t
33.8stest-remotefilelog-bgprefetch.t
33.4stest-hghave.t
33.3stest-rename.t
33.2stest-bisect2.t
33.2stest-rebase-collapse.t
33.2stest-help.t
33.1stest-bundle.t
32.9stest-status.t
32.9stest-copies-unrelated.t#sidedata
32.8stest-copies-unrelated.t#compatibility
32.7stest-alias.t
32.7stest-copies-unrelated.t#changeset
32.6stest-copies-unrelated.t#filelog
32.5stest-largefiles-wireproto.t#sshv2
32.4stest-histedit-fold.t
32.2stest-largefiles-wireproto.t#sshv1
32.1stest-ssh.t#sshv2
32.1stest-narrow-widen-no-ellipsis.t#tree
31.9stest-narrow-widen-no-ellipsis.t#flat
31.8stest-narrow-clone.t
31.7stest-ssh.t#sshv1
31.2stest-archive.t
30.9stest-https.t
30.8stest-automv.t
30.8stest-issue3084.t
30.6stest-subrepo-svn.t
30.4stest-newbranch.t
30.4stest-rebase-abort.t#abortcommand#continueflag
30.3stest-narrow-widen.t#tree
30.3stest-rebase-abort.t#abortcommand#continuecommand
30.2stest-rebase-abort.t#abortflag#continuecommand
30.2stest-rebase-abort.t#abortflag#continueflag
30.1stest-narrow-widen.t#flat
29.9stest-check-pyflakes.t
29.8stest-fastannotate-hg.t
29.4stest-check-code.t
29.4stest-ssh-bundle1.t#sshv2
29.3stest-ssh-bundle1.t#sshv1
29.3stest-mq-qpush-fail.t
29.3stest-merge-no-file-change.t
29.1stest-extension.t
29.1stest-fetch.t
29.1stest-obshistory.t
29.1stest-phases.t
28.6stest-histedit-obsolete.t#abortcommand
28.5stest-remotefilelog-prefetch.t
28.5stest-eol.t
28.4stest-histedit-obsolete.t#abortflag
28.4stest-narrow-share.t#flat
28.2stest-http-bad-server.t
27.9stest-acl.t
27.6stest-narrow-share.t#tree
27.3stest-histedit-arguments.t#abortcommand
27.3stest-histedit-arguments.t#abortflag
27.0stest-bheads.t
26.9stest-convert-cvs-detectmerge.t
26.9stest-convert-git.t
26.9stest-setdiscovery.t
26.5stest-convert-hg-sink.t
26.4stest-obsolete-distributed.t
26.3stest-bookflow.t
25.7stest-absorb.t
25.6stest-convert-cvs.t
25.6stest-import-git.t
25.2stest-patchbomb.t
24.9stest-git-export.t
24.9stest-lfs-serve.t#lfsremote-on
24.7stest-mq-qnew.t
24.6stest-split.t#obsstore-on
24.4stest-branch-change.t
24.4stest-rebase-cache.t
24.4stest-upgrade-repo.t
24.3stest-grep.t
24.1stest-merge1.t
24.0stest-narrow-shallow-merges.t
23.8stest-remove.t
23.8stest-amend.t#obsstore-on
23.7stest-treediscovery-legacy.t
23.6stest-mq-qpush-exact.t
23.6stest-audit-subrepo.t
23.5stest-sparse.t
23.5stest-unamend.t
23.1stest-walk.t
23.1stest-rebase-dest.t
23.1stest-rebase-parameters.t
23.0stest-bundle-r.t
22.8stest-amend.t#obsstore-off
22.8stest-hgweb-commands.t
22.8stest-http.t
22.5stest-histedit-edit.t
22.5stest-split.t#obsstore-off
22.4stest-debugcommands.t
22.4stest-narrow-clone-stream.t#flat-fncache
22.3stest-parse-date.t
22.2stest-narrow-clone-no-ellipsis.t
22.2stest-show-work.t
22.2stest-commandserver.t
22.2stest-narrow-clone-stream.t#flat-nofncache
22.0stest-narrow-clone-stream.t#tree
21.9stest-clone-uncompressed.t#stream-bundle2
21.9stest-infinitepush-bundlestore.t
21.8stest-convert-svn-sink.t
21.8stest-hgweb-symrev.t
21.8stest-rollback.t
21.7stest-rebase-newancestor.t
21.4stest-show-stack.t
21.3stest-narrow-clone-nonlinear.t
21.2stest-ssh-proto-unbundle.t
21.2stest-convert-cvs-synthetic.t
20.9stest-copies-in-changeset.t#sidedata
20.8stest-rename-merge1.t
20.8stest-subrepo-recursion.t
20.6stest-add.t
20.6stest-obsmarkers-effectflag.t
20.4stest-mq-qimport.t
20.4stest-rebase-interruptions.t
20.3stest-push-http.t#bundle2
20.2stest-push.t
20.2stest-revset-legacy-lookup.t

Timeline

test-contrib-perf.t (36.87s)test-contrib-check-code.t (2.03s)test-contrib-check-commit.t (0.18s)test-imports-checker.t (1.01s)test-merge-combination.t (167.37s)test-obsolete-checkheads.t (16.63s)test-push-race.t#strict (53.19s)test-push-race.t#unrelated (53.02s)test-run-tests.t (50.93s)test-check-code.t (29.45s)test-check-py3-compat.t (5.38s)test-push-checkheads-pruned-B8.t (8.06s)test-push-checkheads-superceed-A6.t (6.88s)test-push-checkheads-superceed-A7.t (7.04s)test-push-checkheads-unpushed-D3.t (7.05s)test-push-checkheads-unpushed-D4.t (7.06s)test-push-checkheads-unpushed-D5.t (7.41s)test-rebase-check-restore.t (7.22s)test-largefiles-update.t (65.53s)test-push-checkheads-pruned-B5.t (6.29s)test-push-checkheads-superceed-A3.t (6.10s)test-push-checkheads-unpushed-D2.t (6.04s)test-push-checkheads-unpushed-D7.t (7.28s)test-push-checkheads-partial-C1.t (4.80s)test-push-checkheads-partial-C2.t (4.76s)test-push-checkheads-partial-C4.t (4.65s)test-push-checkheads-pruned-B2.t (5.26s)test-push-checkheads-pruned-B3.t (5.39s)test-push-checkheads-pruned-B4.t (5.02s)test-push-checkheads-superceed-A2.t (6.15s)test-push-checkheads-unpushed-D6.t (5.64s)test-push-checkheads-partial-C3.t (4.62s)test-push-checkheads-pruned-B6.t (5.25s)test-push-checkheads-pruned-B7.t (5.31s)test-push-checkheads-superceed-A8.t (5.42s)test-push-checkheads-unpushed-D1.t (4.82s)test-subrepo-svn.t (30.63s)test-push-checkheads-superceed-A4.t (4.43s)test-push-checkheads-superceed-A5.t (4.30s)test-push-checkheads-pruned-B1.t (3.61s)test-push-checkheads-superceed-A1.t (4.13s)test-copytrace-heuristics.t (51.03s)test-check-config.t (12.89s)test-glog-beautifygraph.t (83.00s)test-gendoc-ja.t (4.45s)test-check-module-imports.t (1.50s)test-convert-cvs.t (25.62s)test-help.t (33.17s)test-obsolete-bounds-checking.t (1.12s)test-gendoc.t (6.18s)test-glog.t (82.77s)test-convert-svn-sink.t (21.80s)test-check-help.t (10.36s)test-patchbomb.t (25.21s)test-convert-svn-source.t (0.13s)test-obsolete-bundle-strip.t (112.34s)test-check-pyflakes.t (29.91s)test-abort-checkin.t (1.08s)test-http-bad-server.t (28.25s)test-ssh-proto-unbundle.t (21.25s)test-obsmarker-template.t (78.53s)test-acl.t (27.88s)test-check-commit.t (2.04s)test-check-shbang.t (2.27s)test-convert-svn-move.t (0.15s)test-check-interfaces.py (0.54s)test-hgweb-commands.t (22.80s)test-hgweb-symrev.t (21.77s)test-obsolete.t (103.06s)test-upgrade-repo.t (24.36s)test-extension.t (29.12s)test-ssh-proto.t (36.76s)test-log.t (96.42s)test-check-execute.t (1.54s)test-dirstate-race.t (16.63s)test-check-pylint.t (57.46s)test-graft.t#abortcommand (93.15s)test-graft.t#abortflag (92.96s)test-convert-svn-encoding.t (0.12s)test-wireproto-content-redirects.t (4.61s)test-hgweb-filelog.t (10.60s)test-hgwebdir.t (34.01s)test-wireproto-exchangev2.t (19.10s)test-bundle2-format.t (12.64s)test-template-map.t (42.73s)test-revset.t (127.25s)test-subrepo.t (108.29s)test-convert-cvs-detectmerge.t (26.94s)test-rebase-obsolete.t (83.55s)test-largefiles.t (100.87s)test-merge-tools.t (75.98s)test-hgweb-json.t (12.57s)test-convert-cvs-synthetic.t (21.16s)test-gendoc-ro.t (4.24s)test-import.t (82.70s)test-subrepo-deep-nested-change.t (40.00s)test-bundle2-exchange.t#sshv1 (71.63s)test-bundle2-exchange.t#sshv2 (71.33s)test-phases-exchange.t (57.70s)test-bookmarks-pushpull.t#b2-binary (109.63s)test-bookmarks-pushpull.t#b2-pushkey (109.72s)test-convert-cvsnt-mergepoints.t (13.10s)test-strip.t (61.89s)test-template-functions.t (95.10s)test-commit-interactive.t (34.57s)test-merge-changedelete.t (52.97s)test-lfs.t (54.68s)test-fix.t (69.70s)test-rename-merge2.t (63.50s)test-hook.t (35.46s)test-https.t (30.87s)test-highlight.t (13.86s)test-convert-git.t (26.87s)test-http-permissions.t (73.59s)test-lfs-test-server.t#git-server (0.27s)test-lfs-test-server.t#hg-server (13.62s)test-setdiscovery.t (26.86s)test-commandserver.t (22.21s)test-clone.t#sshv1 (51.86s)test-clone.t#sshv2 (51.01s)test-bookmarks.t (60.69s)test-check-clang-format.t (3.70s)test-merge-force.t (57.00s)test-revset2.t (63.66s)test-convert-cvs-branch.t (19.08s)test-shelve.t#phasebased (65.98s)test-shelve.t#stripbased (66.67s)test-largefiles-misc.t (88.42s)test-commit-amend.t (66.72s)test-branches.t (35.98s)test-http-protocol.t (14.58s)test-hgweb-diffs.t (13.92s)test-revert.t (50.17s)test-keyword.t (56.64s)test-template-keywords.t (52.76s)test-wireproto-command-filesdata.t (9.79s)test-convert-svn-branches.t (0.10s)test-mq.t (87.39s)test-convert-hg-svn.t (0.12s)test-gendoc-de.t (4.52s)test-lfs-serve-access.t (14.19s)test-wireproto-command-capabilities.t (4.40s)test-generaldelta.t (15.58s)test-subrepo-git.t (60.20s)test-lfs-serve.t#lfsremote-off (8.44s)test-lfs-serve.t#lfsremote-on (24.85s)test-check-format.t (0.31s)test-transplant.t#commandmode (50.17s)test-transplant.t#continueflag (50.55s)test-treemanifest.t (38.11s)test-tags.t (43.04s)test-phases.t (29.05s)test-template-basic.t (54.75s)test-tag.t (39.35s)test-subrepo-recursion.t (20.77s)test-hgweb.t (16.83s)test-convert.t (9.29s)test-check-jshint.t (0.31s)test-http-api-httpv2.t (9.43s)test-http.t (22.78s)test-convert-filemap.t (47.67s)test-obsolete-divergent.t (53.45s)test-annotate.t (50.67s)test-bundle.t (33.12s)test-resolve.t (43.94s)test-shelve2.t#phasebased#abortcommand#continuecommand (60.05s)test-shelve2.t#phasebased#abortcommand#continueflag (59.36s)test-shelve2.t#phasebased#abortflag#continuecommand (59.64s)test-shelve2.t#phasebased#abortflag#continueflag (59.39s)test-shelve2.t#stripbased#abortcommand#continuecommand (58.54s)test-shelve2.t#stripbased#abortcommand#continueflag (58.02s)test-shelve2.t#stripbased#abortflag#continuecommand (58.25s)test-shelve2.t#stripbased#abortflag#continueflag (57.84s)test-split.t#obsstore-off (22.54s)test-split.t#obsstore-on (24.55s)test-encoding-textwrap.t (2.77s)test-obsolete-distributed.t (26.45s)test-walk.t (23.12s)test-mv-cp-st-diff.t (52.36s)test-bisect.t (47.34s)test-convert-p4-filetypes.t (0.10s)test-notify.t (11.21s)test-rebase-scenario-global.t (40.86s)test-commit.t (34.16s)test-ssh.t#sshv1 (31.72s)test-ssh.t#sshv2 (32.14s)test-bundle2-remote-changegroup.t#sshv1 (19.54s)test-bundle2-remote-changegroup.t#sshv2 (19.58s)test-clonebundles.t (19.17s)test-wireproto-exchangev2-shallow.t (6.25s)test-import-git.t (25.56s)test-mq-header-from.t (47.39s)test-i18n.t (4.38s)test-treediscovery.t (37.36s)test-bisect2.t (33.22s)test-archive.t (31.17s)test-fileset.t (45.09s)test-push-warn.t (54.84s)test-hgweb-annotate-whitespace.t (5.44s)test-remotefilelog-repack.t (38.69s)test-debugcommands.t (22.45s)test-remove.t (23.81s)test-rebase-inmemory.t (43.37s)test-clone-uncompressed.t#stream-bundle2 (21.91s)test-clone-uncompressed.t#stream-legacy (19.06s)test-alias.t (32.67s)test-ssh-bundle1.t#sshv1 (29.31s)test-ssh-bundle1.t#sshv2 (29.42s)test-mq-header-date.t (48.72s)test-wireproto-command-changesetdata.t (11.27s)test-pull-pull-corruption.t (15.50s)test-blackbox.t (13.51s)test-convert-svn-startrev.t (0.12s)test-devel-warnings.t (5.88s)test-backout.t (38.67s)test-push-http.t#bundle1 (19.67s)test-push-http.t#bundle2 (20.29s)test-rebase-collapse.t (33.18s)test-contrib-relnotes.t (1.41s)test-update-branches.t (65.64s)test-audit-subrepo.t (23.57s)test-histedit-obsolete.t#abortcommand (28.64s)test-histedit-obsolete.t#abortflag (28.39s)test-histedit-arguments.t#abortcommand (27.30s)test-histedit-arguments.t#abortflag (27.30s)test-wireproto.t (10.59s)test-globalopts.t (12.20s)test-http-bundle1.t (19.71s)test-hgweb-descend-empties.t (2.47s)test-obshistory.t (29.06s)test-fncache.t (12.36s)test-rename.t (33.27s)test-uncommit.t (41.68s)test-mq-subrepo.t (52.82s)test-fastannotate-hg.t (29.81s)test-histedit-fold.t (32.42s)test-progress.t (4.89s)test-remotefilelog-repack-fast.t (34.56s)test-log-linerange.t (9.60s)test-extdiff.t (18.47s)test-getbundle.t (6.28s)test-largefiles-wireproto.t#sshv1 (32.21s)test-largefiles-wireproto.t#sshv2 (32.47s)test-status-color.t (19.59s)test-narrow.t#flat#lfs-off (44.90s)test-narrow.t#flat#lfs-on (53.13s)test-narrow.t#tree#lfs-off (45.18s)test-narrow.t#tree#lfs-on (52.71s)test-convert-hg-sink.t (26.54s)test-logexchange.t (17.60s)test-merge-types.t (13.81s)test-histedit-commute.t (15.66s)test-censor.t (35.71s)test-lfconvert.t (18.36s)test-histedit-edit.t (22.54s)test-remotefilelog-bgprefetch.t (33.78s)test-grep.t (24.26s)test-fetch.t (29.06s)test-copies.t#changeset (60.15s)test-copies.t#compatibility (60.36s)test-copies.t#filelog (60.22s)test-copies.t#sidedata (60.46s)test-wireproto-caching.t (6.34s)test-amend.t#obsstore-off (22.82s)test-amend.t#obsstore-on (23.79s)test-incoming-outgoing.t (14.68s)test-clone-pull-corruption.t (8.08s)test-eol.t (28.49s)test-rollback.t (21.76s)test-install.t (3.77s)test-newbranch.t (30.41s)test-bundle2-multiple-changegroups.t (7.89s)test-merge-criss-cross.t (16.48s)test-wireproto-command-manifestdata.t (6.62s)test-git-export.t (24.93s)test-infinitepush-ci.t (14.39s)test-status.t (32.89s)test-diff-color.t (7.68s)test-rebase-abort.t#abortcommand#continuecommand (30.28s)test-rebase-abort.t#abortcommand#continueflag (30.36s)test-rebase-abort.t#abortflag#continuecommand (30.20s)test-rebase-abort.t#abortflag#continueflag (30.17s)test-lfs-largefiles.t (15.31s)test-hgweb-empty.t (2.24s)test-copies-in-changeset.t#extra (18.64s)test-copies-in-changeset.t#sidedata (20.90s)test-dirstate-race2.t (1.92s)test-merge1.t (24.15s)test-infinitepush-bundlestore.t (21.88s)test-rebase-conflicts.t (14.65s)test-push.t (20.24s)test-rebase-newancestor.t (21.74s)test-convert-mtn.t (0.10s)test-narrow-shallow-merges.t (23.99s)test-mq-guards.t (36.62s)test-hghave.t (33.40s)test-convert-svn-tags.t (0.11s)test-pager.t (13.64s)test-completion.t (6.43s)test-wireproto-command-filedata.t (8.33s)test-qrecord.t (6.75s)test-mq-subrepo-svn.t (2.42s)test-revset-legacy-lookup.t (20.16s)test-rebase-interruptions.t (20.35s)test-absorb.t (25.70s)test-rebase-parameters.t (23.05s)test-hardlinks.t (14.81s)test-export.t (13.50s)test-issue3084.t (30.79s)test-merge-no-file-change.t (29.28s)test-verify.t (9.39s)test-narrow-patterns.t (18.07s)test-rebase-dest.t (23.11s)test-mq-qpush-fail.t (29.30s)test-narrow-widen-no-ellipsis.t#flat (31.92s)test-narrow-widen-no-ellipsis.t#tree (32.06s)test-bundle-r.t (22.99s)test-rebase-pull.t (19.59s)test-exchange-obsmarkers-case-A1.t (18.33s)test-branch-change.t (24.45s)test-sparse.t (23.52s)test-commit-interactive-curses.t (15.84s)test-rebase-named-branches.t (18.09s)test-fix-topology.t#obsstore-off (12.81s)test-fix-topology.t#obsstore-on (14.73s)test-import-bypass.t (18.42s)test-copies-unrelated.t#changeset (32.67s)test-copies-unrelated.t#compatibility (32.83s)test-copies-unrelated.t#filelog (32.61s)test-copies-unrelated.t#sidedata (32.86s)test-revert-interactive.t (13.40s)test-parse-date.t (22.32s)test-treediscovery-legacy.t (23.71s)test-rebase-cache.t (24.39s)test-help-hide.t (0.48s)test-journal.t (7.63s)test-releasenotes-formatting.t (13.17s)test-mq-qrefresh.t (18.98s)test-histedit-fold-non-commute.t (16.38s)test-narrow-widen.t#flat (30.10s)test-narrow-widen.t#tree (30.31s)test-gendoc-pt_BR.t (4.35s)test-gendoc-zh_CN.t (4.33s)test-gendoc-zh_TW.t (4.51s)test-exchange-obsmarkers-case-A3.t (19.30s)test-mq-qrefresh-interactive.t (4.39s)test-chg.t (0.10s)test-wireproto-command-rawstorefiledata.t (3.66s)test-static-http.t (12.30s)test-histedit-non-commute.t (15.82s)test-hgignore.t (11.33s)test-githelp.t (16.93s)test-win32text.t (11.45s)test-exchange-obsmarkers-case-C3.t (12.36s)test-gendoc-it.t (4.46s)test-gendoc-el.t (4.49s)test-gendoc-fr.t (4.42s)test-gendoc-ru.t (4.59s)test-gendoc-sv.t (4.46s)test-gendoc-da.t (4.45s)test-share-bookmarks.t#svfs (13.91s)test-share-bookmarks.t#vfs (13.97s)test-mq-qnew.t (24.73s)test-bheads.t (27.03s)test-flagprocessor.t (19.00s)test-diff-ignore-whitespace.t (15.42s)test-bookflow.t (26.32s)test-http-api.t (4.25s)test-largefiles-cache.t (16.49s)test-encoding.t (7.14s)test-rebase-rename.t (17.54s)test-convert-bzr-merges.t (0.10s)test-mq-qimport.t (20.41s)test-manifest.t (13.47s)test-url-rev.t (14.83s)test-diff-unified.t (10.01s)test-mq-qrefresh-replace-log-message.t (14.00s)test-unamend.t (23.46s)test-init.t (39.62s)test-pager-legacy.t (9.64s)test-rebase-base-flag.t (15.64s)test-histedit-base.t (8.26s)test-parseindex.t (4.86s)test-clone-r.t (13.13s)test-bad-extension.t (2.09s)test-hgweb-raw.t (4.61s)test-rebase-mq.t (18.55s)test-exchange-obsmarkers-case-D1.t (11.68s)test-hgweb-removed.t (2.29s)test-eol-patch.t (7.59s)test-automv.t (30.83s)test-exchange-obsmarkers-case-C2.t (11.34s)test-single-head.t (13.80s)test-ssh-clone-r.t#sshv1 (12.89s)test-ssh-clone-r.t#sshv2 (12.95s)test-subrepo-relative-path.t (11.29s)test-casecollision-merge.t (0.10s)test-http-clone-r.t (11.88s)test-convert-bzr.t (0.10s)test-bookmarks-corner-case.t (8.82s)test-rename-dir-merge.t (13.90s)test-strip-cross.t (19.11s)test-add.t (20.64s)test-histedit-no-change.t (11.86s)test-narrow-clone.t (31.78s)test-hgrc.t (6.04s)test-diffstat.t (13.59s)test-convert-splicemap.t (11.67s)test-http-proxy.t (4.83s)test-removeemptydirs.t (12.82s)test-fileset-generated.t (7.14s)test-bundle-phases.t (17.10s)test-exchange-obsmarkers-case-C1.t (10.61s)test-status-rev.t (6.67s)test-diff-upgrade.t (5.02s)test-pull-update.t (14.06s)test-copy.t (15.46s)test-bisect3.t (9.40s)test-conflict.t (7.98s)test-remotefilelog-prefetch.t (28.53s)test-up-local-change.t (13.19s)test-dispatch.t (10.58s)test-narrow-exchange.t#lfs-off (11.06s)test-narrow-exchange.t#lfs-on (12.73s)test-obsolete-changeset-exchange.t (8.31s)test-exchange-obsmarkers-case-D4.t (9.50s)test-remotefilelog-push-pull.t (18.59s)test-pull-bundle.t (9.16s)test-share.t (10.27s)test-narrow-exchange-merges.t (11.17s)test-phabricator.t (8.72s)test-absorb-rename.t (14.22s)test-eol-update.t (6.86s)test-exchange-obsmarkers-case-B5.t (11.01s)test-churn.t (10.21s)test-pull-branch.t (13.29s)test-eol-hook.t (9.03s)test-bundle-type.t (15.20s)test-remotefilelog-linknodes.t (16.19s)test-narrow-trackedcmd.t#flat (10.12s)test-narrow-trackedcmd.t#tree (10.44s)test-byteify-strings.t (0.92s)test-rebase-detach.t (14.07s)test-stream-bundle-v2.t (4.20s)test-sparse-profiles.t (10.78s)test-mq-qpush-exact.t (23.59s)test-fastannotate-protocol.t (9.58s)test-hybridencode.py (0.29s)test-rebase-bookmarks.t (16.36s)test-bookmarks-current.t (16.59s)test-convert-hg-source.t (13.39s)test-notify-changegroup.t (5.17s)test-encoding-align.t (5.66s)test-debugbuilddag.t (6.34s)test-convert-baz.t (0.10s)test-inherit-mode.t (2.18s)test-infinitepush.t (16.05s)test-histedit-non-commute-abort.t (8.04s)test-releasenotes-merging.t (6.61s)test-remotefilelog-gcrepack.t (10.13s)test-convert-hg-startrev.t (10.25s)test-show-work.t (22.22s)test-narrow-strip.t#flat#lfs-off (7.63s)test-narrow-strip.t#flat#lfs-on (8.89s)test-narrow-strip.t#tree#lfs-off (7.66s)test-narrow-strip.t#tree#lfs-on (8.81s)test-repo-compengines.t (10.00s)test-merge-commit.t (7.90s)test-audit-path.t (13.57s)test-exchange-obsmarkers-case-B4.t (11.46s)test-fastannotate.t (12.35s)test-narrow-expanddirstate.t (6.13s)test-purge.t (11.38s)test-symlinks.t (12.59s)test-exchange-obsmarkers-case-C4.t (9.64s)test-sparse-revlog.t (0.11s)test-mq-safety.t (14.54s)test-directaccess.t (9.66s)test-exchange-obsmarkers-case-A6.t (10.38s)test-exchange-obsmarkers-case-A5.t (9.46s)test-remotefilelog-local.t (18.14s)test-basic.t (7.04s)test-narrow-share.t#flat (28.37s)test-narrow-share.t#tree (27.61s)test-hgweb-csp.t (6.59s)test-histedit-bookmark-motion.t (7.14s)test-diff-binary-file.t (6.69s)test-obsolete-tag-cache.t (5.11s)test-casefolding.t (0.10s)test-mq-git.t (6.85s)test-mq-qfold.t (10.78s)test-remotefilelog-cacheprocess.t (4.52s)test-patchbomb-bookmark.t (3.92s)test-stack.t (13.44s)test-journal-share.t (6.72s)test-paths.t (13.91s)test-contrib-testparseutil.t (0.35s)test-hgweb-no-request-uri.t (1.46s)test-sparse-merges.t (11.87s)test-pathconflicts-merge.t (12.04s)test-releasenotes-parsing.t (2.55s)test-diff-indent-heuristic.t#bdiff (0.78s)test-diff-indent-heuristic.t#xdiff (1.06s)test-import-merge.t (12.71s)test-drawdag.t (9.33s)test-patchbomb-tls.t (4.05s)test-exchange-obsmarkers-case-B2.t (8.88s)test-convert-p4.t (0.11s)test-show-stack.t (21.36s)test-narrow-clone-nonlinear.t (21.29s)test-config.t (5.87s)test-mq-eol.t (6.29s)test-exchange-obsmarkers-case-A4.t (7.72s)test-convert-bzr-directories.t (0.10s)test-obsmarkers-effectflag.t (20.63s)test-rename-merge1.t (20.80s)test-fastannotate-renames.t (9.61s)test-histedit-drop.t (6.21s)test-rebase-mq-skip.t#continuecommand (11.45s)test-rebase-mq-skip.t#continueflag (19.97s)test-bookmarks-merge.t (11.10s)test-lock-badness.t (10.13s)test-repair-strip.t (5.62s)test-histedit-outgoing.t (8.60s)test-pull.t#sshv1 (7.20s)test-pull.t#sshv2 (7.50s)test-exchange-obsmarkers-case-B6.t (8.18s)test-merge-default.t (8.23s)test-extension-timing.t (0.94s)test-match.py (0.22s)test-rebase-emptycommit.t (8.61s)test-cbor.py (0.82s)test-debugbundle.t (3.23s)test-copy-move-merge.t (16.88s)test-profile.t (16.46s)test-convert-tla.t (1.27s)test-mq-qclone-http.t (15.48s)test-exchange-obsmarkers-case-A2.t (14.81s)test-exchange-obsmarkers-case-D2.t (14.72s)test-status-terse.t (14.19s)test-merge7.t (3.95s)test-phase-archived.t (4.54s)test-hgweb-no-path-info.t (1.40s)test-subrepo-missing.t (13.12s)test-pathconflicts-update.t (12.71s)test-show.t (12.43s)test-addremove-similar.t (12.48s)test-contrib.t (1.73s)test-unionrepo.t (12.13s)test-flags.t (11.94s)test-remotefilelog-gc.t (11.86s)test-commit-multiple.t (11.44s)test-commit-unresolved.t#abortcommand (11.20s)test-commit-unresolved.t#abortflag (11.13s)test-import-eol.t (11.06s)test-logtoprocess.t (10.80s)test-mq-missingfiles.t (10.97s)test-sparse-import.t (10.61s)test-rebase-transaction.t#continuecommand (10.67s)test-rebase-transaction.t#continueflag (10.64s)test-identify.t (10.11s)test-default-push.t (9.75s)test-merge-subrepos.t (9.51s)test-narrow-clone-no-ellipsis.t (22.22s)test-filebranch.t (9.12s)test-mq-qdelete.t (8.99s)test-convert-datesort.t (8.67s)test-sidedata.t (4.20s)test-update-atomic.t (3.81s)test-mq-merge.t (9.27s)test-pull-r.t (8.11s)test-clone-update-order.t (5.74s)test-pending.t (7.33s)test-fastannotate-perfhack.t (9.20s)test-origbackup-conflict.t (5.55s)test-merge-local.t (6.80s)test-narrow-pull.t (18.14s)test-remotefilelog-http.t (6.50s)test-bugzilla.t (2.42s)test-exchange-obsmarkers-case-D3.t (8.76s)test-remote-hidden.t (6.08s)test-narrow-shallow.t (18.67s)test-worker.t (2.64s)test-branch-option.t (9.68s)test-empty-group.t (5.02s)test-mac-packages.t (0.17s)test-merge-halt.t (6.38s)test-parents.t (6.32s)test-fix-metadata.t (0.83s)test-http-branchmap.t (4.37s)test-children.t (6.46s)test-diff-change.t (7.56s)test-extdata.t (7.39s)test-bundle2-pushback.t#sshv1 (4.02s)test-bundle2-pushback.t#sshv2 (4.14s)test-rebuildstate.t (6.59s)test-narrow-merge.t#flat (8.36s)test-narrow-merge.t#tree (8.40s)test-mq-pull-from-bundle.t (7.75s)test-exchange-obsmarkers-case-B3.t (7.82s)test-remotefilelog-corrupt-cache.t (5.42s)test-amend-subrepo.t#obsstore-off (8.76s)test-amend-subrepo.t#obsstore-on (8.25s)test-merge-internal-tools-pattern.t (5.40s)test-run-tests.py (0.22s)test-issue672.t (3.64s)test-extensions-afterloaded.t (4.92s)test-tools.t (1.21s)test-fastannotate-corrupt.t (4.50s)test-narrow-commit.t#flat (9.43s)test-narrow-commit.t#tree (9.38s)test-eol-clone.t (3.03s)test-wireproto-serverreactor.py (0.30s)test-excessive-merge.t (4.75s)test-relink.t (3.25s)test-mq-qqueue.t (11.16s)test-narrow-rebase.t#continuecommand (7.90s)test-narrow-rebase.t#continueflag (7.94s)test-push-cgi.t (2.00s)test-record.t (1.27s)test-convert-darcs.t (1.87s)test-remotefilelog-clone-tree.t (5.11s)test-patch.t (3.89s)test-hgweb-non-interactive.t (1.13s)test-sqlitestore.t (2.46s)test-remotefilelog-clone.t (5.09s)test-arbitraryfilectx.t (2.40s)test-remotefilelog-sparse.t (13.20s)test-cache-abuse.t (15.63s)test-rebase-backup.t (5.92s)test-simple-update.t (6.88s)test-pathconflicts-basic.t (6.61s)test-committer.t (4.72s)test-exchange-obsmarkers-case-B7.t (7.46s)test-pull-http.t (4.30s)test-remotefilelog-bundle2-legacy.t (0.69s)test-exchange-obsmarkers-case-B1.t (7.54s)test-remotefilelog-log.t (6.22s)test-mq-qdiff.t (6.82s)test-bookmarks-rebase.t (5.75s)test-serve.t (6.47s)test-exchange-obsmarkers-case-A7.t (6.57s)test-revset-outgoing.t (4.69s)test-import-context.t (2.07s)test-remotefilelog-bundle2.t (7.00s)test-eol-add.t (3.63s)test-bundle-vs-outgoing.t (4.99s)test-rebase-partial.t (4.71s)test-update-names.t (6.56s)test-mailmap.t (4.15s)test-remotefilelog-bundles.t (5.77s)test-merge-remove.t (6.34s)test-convert-tagsbranch-topology.t (1.59s)test-requires.t (3.47s)test-locate.t (9.10s)test-merge-closedheads.t (8.30s)test-rename-after-merge.t (6.80s)test-wireproto-clientreactor.py (0.28s)test-contrib-dumprevlog.t (3.67s)test-remotefilelog-pull-noshallow.t (3.94s)test-debugextensions.t (1.53s)test-narrow-clone-stream.t#flat-fncache (22.39s)test-narrow-clone-stream.t#flat-nofncache (22.16s)test-narrow-clone-stream.t#tree (21.97s)test-rebase-legacy.t#continuecommand (1.61s)test-rebase-legacy.t#continueflag (1.42s)test-issue1306.t (3.32s)test-lfs-bundle.t (6.41s)test-issue1175.t (6.32s)test-cat.t (8.31s)test-nointerrupt.t (4.79s)test-issue660.t (6.85s)test-largefiles-small-disk.t (1.81s)test-convert-clonebranches.t (5.67s)test-oldcgi.t (1.62s)test-impexp-branch.t (4.84s)test-narrow-clone-non-narrow-server.t (9.15s)test-histedit-no-backup.t#abortcommand (2.88s)test-histedit-no-backup.t#abortflag (2.95s)test-issue586.t (5.93s)test-unified-test.t (0.84s)test-rebase-templates.t (3.89s)test-remotefilelog-tags.t (4.78s)test-symlink-placeholder.t (3.50s)test-merge6.t (4.44s)test-narrow-copies.t (6.49s)test-server-view.t (4.74s)test-rebase-issue-noparam-single-rev.t (6.06s)test-dirstate.t (4.20s)test-close-head.t (4.95s)test-url-download.t (4.85s)test-merge-revert2.t (8.58s)test-verify-repo-operations.py (0.14s)test-addremove.t (6.12s)test-mq-qrename.t (10.83s)test-narrow-update.t (6.15s)test-mq-symlinks.t (8.75s)test-ssh-repoerror.t (5.13s)test-wsgirequest.py (0.36s)test-double-merge.t (2.27s)test-narrow-patch.t#flat (2.96s)test-narrow-patch.t#tree (3.08s)test-glog-topological.t (2.36s)test-sparse-verbose-json.t (3.68s)test-merge9.t (4.74s)test-context-metadata.t (2.81s)test-patch-offset.t (0.85s)test-log-exthook.t (1.28s)test-newcgi.t (1.16s)test-issue1802.t (3.72s)test-update-reverse.t (3.29s)test-wireproto-command-branchmap.t (3.37s)test-pushvars.t (2.90s)test-histedit-templates.t (2.60s)test-hgwebdirsym.t (4.13s)test-manifest.py (2.64s)test-revlog-raw.py (0.73s)test-merge-symlinks.t (1.89s)test-branch-tag-confict.t (2.56s)test-custom-filters.t (2.23s)test-narrow-debugcommands.t (3.23s)test-sparse-clone.t (2.08s)test-issue2137.t (1.05s)test-remotefilelog-partial-shallow.t (3.82s)test-eolfilename.t (2.93s)test-merge10.t (3.60s)test-journal-exists.t (2.84s)test-revlog-v2.t (2.16s)test-diffdir.t (5.22s)test-schemes.t (3.07s)test-issue522.t (3.11s)test-histedit-merge-tools.t (2.30s)test-mq-qgoto.t (7.26s)test-revlog.t (1.81s)test-newercgi.t (1.19s)test-editor-filename.t (1.83s)test-url.py (0.27s)test-import-unknown.t (5.65s)test-unbundlehash.t (2.16s)test-narrow-sparse.t#flat (3.49s)test-narrow-sparse.t#tree (3.55s)test-wireproto-command-known.t (2.43s)test-missing-capability.t (2.90s)test-wireproto-command-listkeys.t (2.99s)test-convert-identity.t (3.27s)test-merge-revert.t (8.52s)test-wireproto-command-heads.t (2.68s)test-encode.t (3.59s)test-permissions.t (2.66s)test-casecollision.t (5.52s)test-ancestor.py (1.03s)test-update-dest.t (2.81s)test-known.t (4.18s)test-sparse-fsmonitor.t (0.02s)test-no-symlinks.t (0.10s)test-remotefilelog-datapack.py (1.79s)test-convert-authormap.t (1.86s)test-subrepo-paths.t (1.81s)test-debian-packages.t (0.36s)test-sparse-requirement.t (1.84s)test-confused-revert.t (4.75s)test-remotefilelog-permissions.t (4.56s)test-fuzz-targets.t (0.37s)test-issue1993.t (2.33s)test-issue1502.t (2.98s)test-clone-cgi.t (1.09s)test-sparse-clear.t (2.69s)test-simplemerge.py (0.24s)test-websub.t (1.72s)test-rebase-brute-force.t (2.41s)test-revlog-mmapindex.t (17.81s)test-merge2.t (5.66s)test-diff-antipatience.t#bdiff (0.85s)test-diff-antipatience.t#xdiff (1.11s)test-issue1877.t (3.96s)test-gpg.t (2.13s)test-empty-file.t (3.24s)test-lrucachedict.py (0.24s)test-hgk.t (2.30s)test-changelog-exec.t (2.90s)test-diff-hashes.t (2.31s)test-absorb-edit-lines.t (2.76s)test-remotefilelog-wireproto.t (3.99s)test-mactext.t (1.30s)test-convert-bzr-ghosts.t (0.09s)test-docker-packaging.t (0.29s)test-bookmarks-strip.t (3.22s)test-narrow-acl.t (3.46s)test-lock.py (0.24s)test-remotefilelog-keepset.t (3.10s)test-remotefilelog-histpack.py (3.86s)test-remotefilelog-bad-configs.t (3.03s)test-diff-subdir.t (1.99s)test-convert-bzr-114.t (0.10s)test-trusted.py (0.32s)test-narrow-debugrebuilddirstate.t (2.32s)test-unrelated-pull.t (2.30s)test-parseindex2.py (0.41s)test-diff-reverse.t (2.52s)test-revset-dirstate-parents.t (5.31s)test-wireproto-command-pushkey.t (1.91s)test-update-issue1456.t (3.42s)test-empty.t (1.73s)test-merge5.t (3.03s)test-wireproto-framing.py (0.24s)test-narrow-archive.t (3.40s)test-diff-copy-depth.t (4.89s)test-convert-bzr-treeroot.t (0.10s)test-hgweb-bundle.t (2.07s)test-absorb-unfinished.t (1.60s)test-mq-qimport-fail-cleanup.t (1.81s)test-fix-clang-format.t (1.53s)test-manifest-merging.t (2.16s)test-linerange.py (0.24s)test-issue619.t (2.28s)test-merge8.t (2.36s)test-issue842.t (2.32s)test-remotefilelog-blame.t (3.94s)test-linelog.py (2.05s)test-filecache.py (1.18s)test-propertycache.py (0.65s)test-revlog-group-emptyiter.t (1.64s)test-pathencode.py (0.57s)test-demandimport.py (0.43s)test-archive-symlinks.t (1.58s)test-absorb-strip.t (1.43s)test-pull-permission.t (1.43s)test-issue5979.t (2.84s)test-rust-ancestor.py (0.19s)test-revisions.t (3.85s)test-merge4.t (2.46s)test-absorb-filefixupstate.py (0.43s)test-wireproto-command-lookup.t (1.56s)test-context.py (0.48s)test-issue612.t (2.29s)test-debugindexdot.t (2.53s)test-eol-tag.t (1.61s)test-batching.py (0.34s)test-bdiff.py (0.24s)test-hgweb-auth.py (0.21s)test-nested-repo.t (2.90s)test-minirst.py (0.27s)test-execute-bit.t (2.56s)test-username-newline.t (1.00s)test-fastannotate-revmap.py (0.41s)test-issue4074.t (1.97s)test-remotefilelog-share.t (2.42s)test-revlog-packentry.t (1.26s)test-dirstate-nonnormalset.t (1.95s)test-ui-config.py (0.47s)test-diff-issue2761.t (2.26s)test-atomictempfile.py (0.24s)test-strict.t (2.03s)test-util.py (0.23s)test-diff-newlines.t (1.08s)test-rust-discovery.py (0.20s)test-empty-dir.t (1.43s)test-storage.py (2.22s)test-absorb-phase.t (1.99s)test-annotate.py (0.28s)test-debugrename.t (1.98s)test-extra-filelog-entry.t (1.60s)test-issue1438.t (2.14s)test-issue1102.t (1.78s)test-fastannotate-diffopts.t (1.05s)test-bad-pull.t (1.47s)test-revert-unknown.t (1.84s)test-revert-flags.t (1.61s)test-simplekeyvaluefile.py (0.26s)test-issue1089.t (1.72s)test-doctest.py (1.08s)test-backwards-remove.t (1.41s)test-wireproto.py (0.32s)test-cappedreader.py (0.18s)test-contrib-emacs.t (1.48s)test-xdg.t (0.33s)test-dirstate-backup.t (0.49s)test-mq-qsave.t (1.13s)test-encoding-func.py (0.21s)test-extensions-wrapfunction.py (0.32s)test-walkrepo.py (0.41s)test-revlog-ancestry.py (0.50s)test-ui-verbosity.py (0.38s)test-filelog.py (0.42s)test-sshserver.py (0.32s)test-hg-parseurl.py (0.36s)test-symlink-os-yes-fs-no.py (1.45s)test-minifileset.py (0.26s)test-config-env.py (0.26s)test-lfs-pointer.py (0.40s)test-duplicateoptions.py (0.50s)test-hgwebdir-paths.py (0.32s)test-ui-color.py (0.36s)test-status-inprocess.py (0.38s)test-dispatch.py (0.34s)test-mdiff.py (0.23s)