Job try-ea5da7abfd67f71258322052ef3d679c6e9a5b6e-debian10-cpython-3.6-0

Repo:try
Node:ea5da7abfd67f71258322052ef3d679c6e9a5b6e
Name:debian10-cpython-3.6
Scheduled At:2019-10-24T01:44:29
Started At:2019-10-24T01:44:36
Finished At:2019-10-24T01:52:26

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,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-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-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 22 2019, 02:38:39) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+30-ea5da7abfd67)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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.7sc8r1ae/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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.7sc8r1ae/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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 22 2019, 02:38:39) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+30-ea5da7abfd67)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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.7sc8r1ae/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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.7sc8r1ae/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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
@@ -222,17 +342,26 @@
   > EOF
 
   $ ( testrepohgenv; "$PYTHON" wixxml.py help )
-  Not installed:
-    help/common.txt
-    help/hg-ssh.8.txt
-    help/hg.1.txt
-    help/hgignore.5.txt
-    help/hgrc.5.txt
-  Not tracked:
+  Traceback (most recent call last):
+    File "wixxml.py", line 40, in <module>
+      xml = ET.parse("%s/../contrib/packaging/wix/%s.wxs" % (testdir, sys.argv[1]))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/xml/etree/ElementTree.py", line 1196, in parse
+      tree.parse(source, parser)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/xml/etree/ElementTree.py", line 586, in parse
+      source = open(source, "rb")
+  FileNotFoundError: [Errno 2] $ENOENT$: '/hgwork/src/tests/../contrib/packaging/wix/help.wxs'
+  [1]
 
   $ ( testrepohgenv; "$PYTHON" wixxml.py templates )
-  Not installed:
-  Not tracked:
+  Traceback (most recent call last):
+    File "wixxml.py", line 40, in <module>
+      xml = ET.parse("%s/../contrib/packaging/wix/%s.wxs" % (testdir, sys.argv[1]))
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/xml/etree/ElementTree.py", line 1196, in parse
+      tree.parse(source, parser)
+    File "/hgdev/pyenv/versions/3.6.9/lib/python3.6/xml/etree/ElementTree.py", line 586, in parse
+      source = open(source, "rb")
+  FileNotFoundError: [Errno 2] $ENOENT$: '/hgwork/src/tests/../contrib/packaging/wix/templates.wxs'
+  [1]
 
 #endif
 

test-lfs-serve-access.t

--- /hgwork/src/tests/test-lfs-serve-access.t
+++ /hgwork/src/tests/test-lfs-serve-access.t.err
@@ -163,11 +163,13 @@
 
   $ cat $TESTTMP/access.log $TESTTMP/errors.log
   $LOCALIP - - [$LOGDATE$] "POST /missing/objects/batch HTTP/1.1" 404 - (glob)
+  $LOCALIP - - [24/Oct/2019 01:47:33] "{"objects": [{"oid": "f03217a32529a28a42d03b1244fe09b6e0f9fd06d7b966d4d50567be2abe6c0e", "size": 20}], "operation": "download"}" HTTPStatus.BAD_REQUEST -
   $LOCALIP - - [$LOGDATE$] "GET /subdir/mount/point?cmd=capabilities HTTP/1.1" 200 - (glob)
   $LOCALIP - - [$LOGDATE$] "GET /subdir/mount/point?cmd=batch HTTP/1.1" 200 - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
   $LOCALIP - - [$LOGDATE$] "GET /subdir/mount/point?cmd=getbundle HTTP/1.1" 200 - x-hgarg-1:bookmarks=1&bundlecaps=HG20%2Cbundle2%3DHG20%250Abookmarks%250Achangegroup%253D01%252C02%252C03%250Adigests%253Dmd5%252Csha1%252Csha512%250Aerror%253Dabort%252Cunsupportedcontent%252Cpushraced%252Cpushkey%250Ahgtagsfnodes%250Alistkeys%250Aphases%253Dheads%250Apushkey%250Aremote-changegroup%253Dhttp%252Chttps%250Arev-branch-cache%250Astream%253Dv2&cg=1&common=0000000000000000000000000000000000000000&heads=525251863cad618e55d483555f3d00a2ca99597e&listkeys=bookmarks&phases=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
   $LOCALIP - - [$LOGDATE$] "POST /subdir/mount/point/.git/info/lfs/objects/batch HTTP/1.1" 200 - (glob)
   $LOCALIP - - [$LOGDATE$] "GET /subdir/mount/point/.hg/lfs/objects/f03217a32529a28a42d03b1244fe09b6e0f9fd06d7b966d4d50567be2abe6c0e HTTP/1.1" 200 - (glob)
+  $LOCALIP - - [24/Oct/2019 01:47:33] code 400, message Bad request syntax ('{"objects": [{"oid": "f03217a32529a28a42d03b1244fe09b6e0f9fd06d7b966d4d50567be2abe6c0e", "size": 20}], "operation": "download"}')
 
 Blobs that already exist in the usercache are linked into the repo store, even
 though the client doesn't send the blob.
@@ -195,6 +197,7 @@
   server2/.hg/store/lfs/objects/f0/3217a32529a28a42d03b1244fe09b6e0f9fd06d7b966d4d50567be2abe6c0e
   $ "$PYTHON" $RUNTESTDIR/killdaemons.py $DAEMON_PIDS
   $ cat $TESTTMP/errors.log
+  $LOCALIP - - [24/Oct/2019 01:47:33] code 400, message Bad request syntax ('{"objects": [{"oid": "f03217a32529a28a42d03b1244fe09b6e0f9fd06d7b966d4d50567be2abe6c0e", "size": 20}], "operation": "download"}')
 
   $ cat >> $TESTTMP/lfsstoreerror.py <<EOF
   > import errno
@@ -354,7 +357,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 +365,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 +379,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.7sc8r1ae/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.7sc8r1ae/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.7sc8r1ae/install/lib/python/hgext/notify.py", line 553, in hook
+      n.send(ctx, count, data)
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/hgext/notify.py", line 387, in send
+      msg = p.parsestr(encoding.strfromlocal(data))
+    File "/hgwork/tmp/hgtests.7sc8r1ae/install/lib/python/mercurial/encoding.py", line 223, in unifromlocal
+      return fromlocal(s).decode('utf-8')
+    File "/hgwork/tmp/hgtests.7sc8r1ae/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.1571881700.447053693717978928@ip-172-31-60-172.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.1571881701.447053693717978928@ip-172-31-60-172.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.1571881701.447053693717978928@ip-172-31-60-172.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.1571881702.447053693717978928@ip-172-31-60-172.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.1571881703.447053693717978928@ip-172-31-60-172.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.1571881703.447053693717978928@ip-172-31-60-172.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.1571881704.447053693717978928@ip-172-31-60-172.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
170.0stest-merge-combination.t
129.2stest-revset.t
113.6stest-obsolete-bundle-strip.t
111.4stest-bookmarks-pushpull.t#b2-binary
110.8stest-bookmarks-pushpull.t#b2-pushkey
109.6stest-subrepo.t
105.0stest-obsolete.t
102.8stest-largefiles.t
98.2stest-log.t
96.2stest-template-functions.t
94.7stest-graft.t#abortflag
94.6stest-graft.t#abortcommand
89.9stest-largefiles-misc.t
89.3stest-mq.t
84.9stest-glog-beautifygraph.t
84.4stest-glog.t
84.3stest-rebase-obsolete.t
83.5stest-import.t
80.4stest-obsmarker-template.t
76.9stest-merge-tools.t
74.3stest-http-permissions.t
73.1stest-bundle2-exchange.t#sshv2
72.4stest-bundle2-exchange.t#sshv1
71.6stest-largefiles-update.t
71.3stest-fix.t
67.9stest-commit-amend.t
67.8stest-shelve.t#stripbased
67.1stest-update-branches.t
66.8stest-shelve.t#phasebased
64.6stest-rename-merge2.t
64.3stest-revset2.t
62.6stest-strip.t
61.5stest-copies.t#filelog
61.5stest-copies.t#sidedata
61.4stest-copies.t#compatibility
61.2stest-bookmarks.t
61.2stest-copies.t#changeset
61.0stest-subrepo-git.t
60.5stest-shelve2.t#phasebased#abortcommand#continueflag
60.4stest-shelve2.t#phasebased#abortflag#continuecommand
60.3stest-shelve2.t#phasebased#abortcommand#continuecommand
60.0stest-shelve2.t#phasebased#abortflag#continueflag
59.3stest-phases-exchange.t
59.1stest-shelve2.t#stripbased#abortcommand#continuecommand
58.9stest-shelve2.t#stripbased#abortcommand#continueflag
58.9stest-shelve2.t#stripbased#abortflag#continuecommand
58.6stest-shelve2.t#stripbased#abortflag#continueflag
57.8stest-check-pylint.t
57.5stest-merge-force.t
57.3stest-keyword.t
55.6stest-push-warn.t
55.5stest-lfs.t
55.5stest-template-basic.t
54.1stest-push-race.t#unrelated
54.0stest-obsolete-divergent.t
53.7stest-merge-changedelete.t
53.6stest-mq-subrepo.t
53.6stest-narrow.t#flat#lfs-on
53.5stest-narrow.t#tree#lfs-on
53.5stest-push-race.t#strict
53.0stest-template-keywords.t
53.0stest-mv-cp-st-diff.t
53.0stest-clone.t#sshv1
52.4stest-clone.t#sshv2
51.9stest-run-tests.t
51.3stest-transplant.t#continueflag
51.2stest-transplant.t#commandmode
51.2stest-annotate.t
51.2stest-revert.t
50.9stest-copytrace-heuristics.t
49.5stest-mq-header-date.t
48.2stest-bisect.t
48.1stest-mq-header-from.t
48.1stest-convert-filemap.t
46.0stest-narrow.t#tree#lfs-off
45.9stest-narrow.t#flat#lfs-off
45.5stest-fileset.t
44.4stest-resolve.t
44.0stest-rebase-inmemory.t
43.8stest-template-map.t
43.6stest-tags.t
42.3stest-uncommit.t
40.9stest-rebase-scenario-global.t
40.3stest-subrepo-deep-nested-change.t
40.3stest-init.t
39.9stest-tag.t
39.3stest-backout.t
39.0stest-remotefilelog-repack.t
38.7stest-treemanifest.t
38.5stest-copies-unrelated.t#sidedata
38.5stest-copies-unrelated.t#filelog
38.5stest-copies-unrelated.t#compatibility
38.4stest-copies-unrelated.t#changeset
37.7stest-treediscovery.t
37.4stest-ssh-proto.t
37.2stest-mq-guards.t
37.1stest-contrib-perf.t
36.7stest-branches.t
36.3stest-censor.t
36.2stest-hook.t
34.9stest-remotefilelog-repack-fast.t
34.8stest-commit.t
34.5stest-commit-interactive.t
33.8stest-bisect2.t
33.8stest-hgwebdir.t
33.8stest-rename.t
33.7stest-help.t
33.6stest-rebase-collapse.t
33.4stest-remotefilelog-bgprefetch.t
33.4stest-status.t
33.2stest-bundle.t
33.2stest-alias.t
32.8stest-histedit-fold.t
32.8stest-narrow-widen-no-ellipsis.t#tree
32.7stest-largefiles-wireproto.t#sshv2
32.5stest-largefiles-wireproto.t#sshv1
32.4stest-narrow-widen.t#flat
32.4stest-narrow-widen-no-ellipsis.t#flat
32.4stest-ssh.t#sshv1
32.4stest-ssh.t#sshv2
32.3stest-narrow-clone.t
32.3stest-narrow-widen.t#tree
32.0stest-check-code.t
31.6stest-archive.t
31.4stest-https.t
31.4stest-issue3084.t
31.2stest-automv.t
31.0stest-newbranch.t
30.8stest-rebase-abort.t#abortcommand#continueflag
30.7stest-rebase-abort.t#abortcommand#continuecommand
30.6stest-rebase-abort.t#abortflag#continueflag
30.5stest-rebase-abort.t#abortflag#continuecommand
30.3stest-fastannotate-hg.t
30.3stest-subrepo-svn.t
30.2stest-narrow-share.t#flat
30.2stest-check-pyflakes.t
30.1stest-narrow-share.t#tree
30.0stest-mq-qpush-fail.t
29.9stest-ssh-bundle1.t#sshv2
29.8stest-extension.t
29.8stest-ssh-bundle1.t#sshv1
29.7stest-merge-no-file-change.t
29.3stest-obshistory.t
29.2stest-histedit-obsolete.t#abortcommand
29.2stest-phases.t
29.1stest-fetch.t
29.1stest-eol.t
29.0stest-histedit-obsolete.t#abortflag
28.8stest-acl.t
28.8stest-remotefilelog-prefetch.t
28.6stest-http-bad-server.t
27.8stest-histedit-arguments.t#abortcommand
27.6stest-histedit-arguments.t#abortflag
27.5stest-setdiscovery.t
27.5stest-bheads.t
27.2stest-convert-git.t
26.9stest-convert-hg-sink.t
26.7stest-bookflow.t
26.6stest-obsolete-distributed.t
26.6stest-convert-cvs-detectmerge.t
26.3stest-absorb.t
25.9stest-import-git.t
25.5stest-patchbomb.t
25.3stest-convert-cvs.t
25.3stest-git-export.t
25.1stest-lfs-serve.t#lfsremote-on
25.1stest-branch-change.t
25.0stest-mq-qnew.t
25.0stest-split.t#obsstore-on
24.9stest-hghave.t
24.8stest-rebase-cache.t
24.8stest-upgrade-repo.t
24.5stest-merge1.t
24.4stest-narrow-shallow-merges.t
24.4stest-sparse.t
24.2stest-mq-qpush-exact.t
24.1stest-remove.t
24.0stest-audit-subrepo.t
24.0stest-amend.t#obsstore-on
23.9stest-unamend.t
23.9stest-treediscovery-legacy.t
23.8stest-show-stack.t
23.8stest-narrow-clone-nonlinear.t
23.6stest-bundle-r.t
23.5stest-walk.t
23.5stest-rebase-parameters.t
23.5stest-rebase-dest.t
23.4stest-grep.t
23.2stest-amend.t#obsstore-off
23.1stest-rename-merge1.t
23.0stest-hgweb-commands.t
23.0stest-obsmarkers-effectflag.t
23.0stest-split.t#obsstore-off
22.8stest-histedit-edit.t
22.8stest-http.t
22.7stest-narrow-clone-stream.t#flat-fncache
22.6stest-narrow-clone-stream.t#flat-nofncache
22.6stest-narrow-clone-stream.t#tree
22.6stest-debugcommands.t
22.4stest-show-work.t
22.4stest-commandserver.t
22.4stest-clone-uncompressed.t#stream-bundle2
22.4stest-parse-date.t
22.3stest-infinitepush-bundlestore.t
22.2stest-hgweb-symrev.t
22.1stest-rebase-newancestor.t
21.9stest-rollback.t
21.4stest-narrow-clone-no-ellipsis.t
21.4stest-ssh-proto-unbundle.t
21.3stest-convert-svn-sink.t
21.2stest-add.t
21.1stest-subrepo-recursion.t
21.0stest-convert-cvs-synthetic.t
20.9stest-copies-in-changeset.t#sidedata
20.9stest-push-http.t#bundle2
20.7stest-rebase-interruptions.t
20.6stest-mq-qimport.t
20.5stest-push.t
20.4stest-revset-legacy-lookup.t
20.3stest-bundle2-remote-changegroup.t#sshv1

Timeline

test-contrib-check-code.t (2.04s)test-contrib-check-commit.t (0.19s)test-contrib-perf.t (37.13s)test-imports-checker.t (0.94s)test-merge-combination.t (169.99s)test-obsolete-checkheads.t (16.52s)test-push-race.t#strict (53.49s)test-push-race.t#unrelated (54.06s)test-run-tests.t (51.86s)test-check-code.t (32.01s)test-check-py3-compat.t (5.46s)test-push-checkheads-pruned-B8.t (8.10s)test-push-checkheads-unpushed-D3.t (7.10s)test-push-checkheads-unpushed-D4.t (7.37s)test-push-checkheads-unpushed-D5.t (7.28s)test-largefiles-update.t (71.60s)test-push-checkheads-pruned-B5.t (6.31s)test-push-checkheads-superceed-A3.t (6.12s)test-push-checkheads-superceed-A6.t (7.12s)test-push-checkheads-superceed-A7.t (7.02s)test-push-checkheads-unpushed-D2.t (6.06s)test-push-checkheads-unpushed-D7.t (7.26s)test-rebase-check-restore.t (7.28s)test-push-checkheads-partial-C1.t (4.96s)test-push-checkheads-partial-C2.t (4.87s)test-push-checkheads-pruned-B2.t (5.27s)test-push-checkheads-pruned-B3.t (5.39s)test-push-checkheads-pruned-B4.t (5.07s)test-push-checkheads-superceed-A2.t (6.15s)test-push-checkheads-unpushed-D6.t (5.79s)test-push-checkheads-partial-C3.t (4.63s)test-push-checkheads-partial-C4.t (4.61s)test-push-checkheads-pruned-B6.t (5.33s)test-push-checkheads-pruned-B7.t (5.38s)test-push-checkheads-superceed-A8.t (5.60s)test-push-checkheads-unpushed-D1.t (4.95s)test-subrepo-svn.t (30.27s)test-push-checkheads-superceed-A4.t (4.40s)test-push-checkheads-superceed-A5.t (4.35s)test-push-checkheads-pruned-B1.t (3.62s)test-push-checkheads-superceed-A1.t (3.81s)test-copytrace-heuristics.t (50.85s)test-check-config.t (13.17s)test-glog-beautifygraph.t (84.90s)test-gendoc-ja.t (4.61s)test-check-module-imports.t (1.52s)test-convert-cvs.t (25.34s)test-help.t (33.71s)test-gendoc.t (6.17s)test-obsolete-bounds-checking.t (1.02s)test-glog.t (84.43s)test-convert-svn-sink.t (21.28s)test-check-help.t (10.42s)test-patchbomb.t (25.53s)test-convert-svn-source.t (0.13s)test-obsolete-bundle-strip.t (113.62s)test-check-pyflakes.t (30.18s)test-abort-checkin.t (1.11s)test-http-bad-server.t (28.60s)test-ssh-proto-unbundle.t (21.45s)test-obsmarker-template.t (80.38s)test-acl.t (28.83s)test-check-commit.t (1.88s)test-check-shbang.t (2.35s)test-convert-svn-move.t (0.13s)test-check-interfaces.py (0.53s)test-hgweb-commands.t (23.03s)test-hgweb-symrev.t (22.19s)test-obsolete.t (104.96s)test-upgrade-repo.t (24.77s)test-extension.t (29.83s)test-ssh-proto.t (37.37s)test-log.t (98.18s)test-check-execute.t (1.52s)test-dirstate-race.t (17.03s)test-check-pylint.t (57.76s)test-graft.t#abortcommand (94.56s)test-graft.t#abortflag (94.66s)test-convert-svn-encoding.t (0.12s)test-wireproto-content-redirects.t (4.78s)test-hgweb-filelog.t (10.73s)test-hgwebdir.t (33.80s)test-wireproto-exchangev2.t (19.46s)test-bundle2-format.t (12.68s)test-template-map.t (43.83s)test-revset.t (129.23s)test-subrepo.t (109.63s)test-convert-cvs-detectmerge.t (26.55s)test-rebase-obsolete.t (84.27s)test-largefiles.t (102.80s)test-merge-tools.t (76.94s)test-hgweb-json.t (12.88s)test-convert-cvs-synthetic.t (21.00s)test-gendoc-ro.t (4.22s)test-import.t (83.48s)test-subrepo-deep-nested-change.t (40.31s)test-bundle2-exchange.t#sshv1 (72.39s)test-bundle2-exchange.t#sshv2 (73.07s)test-phases-exchange.t (59.28s)test-bookmarks-pushpull.t#b2-binary (111.39s)test-bookmarks-pushpull.t#b2-pushkey (110.82s)test-convert-cvsnt-mergepoints.t (12.61s)test-strip.t (62.57s)test-template-functions.t (96.17s)test-commit-interactive.t (34.54s)test-merge-changedelete.t (53.68s)test-lfs.t (55.54s)test-fix.t (71.26s)test-hook.t (36.17s)test-rename-merge2.t (64.58s)test-https.t (31.44s)test-highlight.t (13.80s)test-convert-git.t (27.17s)test-http-permissions.t (74.35s)test-lfs-test-server.t#git-server (0.27s)test-lfs-test-server.t#hg-server (13.70s)test-setdiscovery.t (27.48s)test-commandserver.t (22.43s)test-clone.t#sshv1 (53.02s)test-clone.t#sshv2 (52.44s)test-bookmarks.t (61.25s)test-check-clang-format.t (2.27s)test-merge-force.t (57.49s)test-revset2.t (64.29s)test-convert-cvs-branch.t (18.81s)test-shelve.t#phasebased (66.83s)test-shelve.t#stripbased (67.80s)test-largefiles-misc.t (89.86s)test-commit-amend.t (67.93s)test-branches.t (36.73s)test-http-protocol.t (14.86s)test-hgweb-diffs.t (13.92s)test-revert.t (51.22s)test-keyword.t (57.26s)test-template-keywords.t (53.04s)test-wireproto-command-filesdata.t (9.86s)test-convert-svn-branches.t (0.14s)test-mq.t (89.34s)test-convert-hg-svn.t (0.12s)test-gendoc-de.t (4.50s)test-lfs-serve-access.t (14.27s)test-wireproto-command-capabilities.t (4.54s)test-generaldelta.t (15.77s)test-subrepo-git.t (61.02s)test-lfs-serve.t#lfsremote-off (8.46s)test-lfs-serve.t#lfsremote-on (25.09s)test-check-format.t (0.33s)test-transplant.t#commandmode (51.25s)test-transplant.t#continueflag (51.26s)test-treemanifest.t (38.73s)test-tags.t (43.60s)test-phases.t (29.24s)test-template-basic.t (55.53s)test-tag.t (39.88s)test-subrepo-recursion.t (21.10s)test-hgweb.t (17.16s)test-convert.t (9.39s)test-check-jshint.t (0.32s)test-http-api-httpv2.t (9.54s)test-http.t (22.76s)test-convert-filemap.t (48.08s)test-obsolete-divergent.t (53.98s)test-annotate.t (51.24s)test-bundle.t (33.22s)test-resolve.t (44.42s)test-shelve2.t#phasebased#abortcommand#continuecommand (60.31s)test-shelve2.t#phasebased#abortcommand#continueflag (60.46s)test-shelve2.t#phasebased#abortflag#continuecommand (60.38s)test-shelve2.t#phasebased#abortflag#continueflag (60.05s)test-shelve2.t#stripbased#abortcommand#continuecommand (59.07s)test-shelve2.t#stripbased#abortcommand#continueflag (58.88s)test-shelve2.t#stripbased#abortflag#continuecommand (58.88s)test-shelve2.t#stripbased#abortflag#continueflag (58.62s)test-split.t#obsstore-off (22.96s)test-split.t#obsstore-on (25.00s)test-encoding-textwrap.t (2.82s)test-obsolete-distributed.t (26.62s)test-walk.t (23.53s)test-mv-cp-st-diff.t (53.03s)test-bisect.t (48.20s)test-convert-p4-filetypes.t (0.10s)test-notify.t (11.57s)test-rebase-scenario-global.t (40.90s)test-commit.t (34.79s)test-ssh.t#sshv1 (32.39s)test-ssh.t#sshv2 (32.36s)test-bundle2-remote-changegroup.t#sshv1 (20.29s)test-bundle2-remote-changegroup.t#sshv2 (19.76s)test-clonebundles.t (19.33s)test-wireproto-exchangev2-shallow.t (6.05s)test-import-git.t (25.92s)test-mq-header-from.t (48.09s)test-i18n.t (4.42s)test-treediscovery.t (37.71s)test-bisect2.t (33.81s)test-archive.t (31.64s)test-fileset.t (45.54s)test-grep.t (23.44s)test-push-warn.t (55.64s)test-hgweb-annotate-whitespace.t (5.38s)test-remotefilelog-repack.t (39.03s)test-debugcommands.t (22.60s)test-remove.t (24.12s)test-rebase-inmemory.t (44.03s)test-clone-uncompressed.t#stream-bundle2 (22.40s)test-clone-uncompressed.t#stream-legacy (19.06s)test-alias.t (33.20s)test-ssh-bundle1.t#sshv1 (29.77s)test-ssh-bundle1.t#sshv2 (29.92s)test-mq-header-date.t (49.48s)test-wireproto-command-changesetdata.t (11.40s)test-pull-pull-corruption.t (15.60s)test-blackbox.t (13.85s)test-convert-svn-startrev.t (0.12s)test-devel-warnings.t (5.84s)test-backout.t (39.34s)test-push-http.t#bundle1 (19.83s)test-push-http.t#bundle2 (20.86s)test-rebase-collapse.t (33.64s)test-contrib-relnotes.t (1.49s)test-update-branches.t (67.08s)test-audit-subrepo.t (24.04s)test-histedit-obsolete.t#abortcommand (29.25s)test-histedit-obsolete.t#abortflag (29.03s)test-histedit-arguments.t#abortcommand (27.81s)test-histedit-arguments.t#abortflag (27.65s)test-wireproto.t (10.72s)test-globalopts.t (12.45s)test-http-bundle1.t (19.62s)test-hgweb-descend-empties.t (2.43s)test-obshistory.t (29.28s)test-fncache.t (12.64s)test-rename.t (33.75s)test-uncommit.t (42.30s)test-mq-subrepo.t (53.65s)test-fastannotate-hg.t (30.34s)test-histedit-fold.t (32.80s)test-progress.t (5.01s)test-remotefilelog-repack-fast.t (34.90s)test-log-linerange.t (9.70s)test-extdiff.t (18.86s)test-getbundle.t (6.25s)test-largefiles-wireproto.t#sshv1 (32.47s)test-largefiles-wireproto.t#sshv2 (32.70s)test-status-color.t (19.70s)test-narrow.t#flat#lfs-off (45.89s)test-narrow.t#flat#lfs-on (53.58s)test-narrow.t#tree#lfs-off (46.03s)test-narrow.t#tree#lfs-on (53.55s)test-convert-hg-sink.t (26.90s)test-logexchange.t (17.81s)test-merge-types.t (13.95s)test-histedit-commute.t (15.87s)test-censor.t (36.30s)test-lfconvert.t (18.60s)test-histedit-edit.t (22.78s)test-fetch.t (29.09s)test-remotefilelog-bgprefetch.t (33.36s)test-copies.t#changeset (61.23s)test-copies.t#compatibility (61.43s)test-copies.t#filelog (61.50s)test-copies.t#sidedata (61.47s)test-wireproto-caching.t (6.35s)test-amend.t#obsstore-off (23.18s)test-amend.t#obsstore-on (23.96s)test-incoming-outgoing.t (15.01s)test-clone-pull-corruption.t (8.12s)test-eol.t (29.05s)test-rollback.t (21.90s)test-install.t (3.75s)test-newbranch.t (30.97s)test-bundle2-multiple-changegroups.t (8.60s)test-merge-criss-cross.t (16.59s)test-wireproto-command-manifestdata.t (6.71s)test-git-export.t (25.32s)test-infinitepush-ci.t (14.52s)test-status.t (33.35s)test-diff-color.t (7.80s)test-rebase-abort.t#abortcommand#continuecommand (30.66s)test-rebase-abort.t#abortcommand#continueflag (30.79s)test-rebase-abort.t#abortflag#continuecommand (30.50s)test-rebase-abort.t#abortflag#continueflag (30.55s)test-lfs-largefiles.t (15.55s)test-hgweb-empty.t (2.19s)test-dirstate-race2.t (2.03s)test-merge1.t (24.54s)test-infinitepush-bundlestore.t (22.33s)test-rebase-conflicts.t (15.01s)test-push.t (20.47s)test-rebase-newancestor.t (22.09s)test-convert-mtn.t (0.08s)test-copies-in-changeset.t#extra (18.86s)test-copies-in-changeset.t#sidedata (20.90s)test-narrow-shallow-merges.t (24.40s)test-mq-guards.t (37.23s)test-hghave.t (24.94s)test-convert-svn-tags.t (0.11s)test-pager.t (13.70s)test-completion.t (6.51s)test-wireproto-command-filedata.t (8.38s)test-qrecord.t (7.08s)test-mq-subrepo-svn.t (2.46s)test-revset-legacy-lookup.t (20.36s)test-copies-unrelated.t#changeset (38.36s)test-copies-unrelated.t#compatibility (38.50s)test-copies-unrelated.t#filelog (38.52s)test-copies-unrelated.t#sidedata (38.53s)test-rebase-interruptions.t (20.71s)test-absorb.t (26.32s)test-rebase-parameters.t (23.51s)test-hardlinks.t (15.28s)test-export.t (13.58s)test-issue3084.t (31.36s)test-merge-no-file-change.t (29.72s)test-verify.t (9.58s)test-narrow-patterns.t (18.28s)test-rebase-dest.t (23.48s)test-mq-qpush-fail.t (29.99s)test-narrow-widen-no-ellipsis.t#flat (32.39s)test-narrow-widen-no-ellipsis.t#tree (32.79s)test-bundle-r.t (23.56s)test-rebase-pull.t (19.86s)test-exchange-obsmarkers-case-A1.t (18.82s)test-branch-change.t (25.07s)test-sparse.t (24.37s)test-commit-interactive-curses.t (16.12s)test-rebase-named-branches.t (18.63s)test-fix-topology.t#obsstore-off (13.19s)test-fix-topology.t#obsstore-on (15.15s)test-import-bypass.t (18.76s)test-revert-interactive.t (13.88s)test-parse-date.t (22.36s)test-treediscovery-legacy.t (23.89s)test-narrow-widen.t#flat (32.40s)test-narrow-widen.t#tree (32.32s)test-rebase-cache.t (24.78s)test-journal.t (7.94s)test-help-hide.t (0.50s)test-releasenotes-formatting.t (13.42s)test-mq-qrefresh.t (19.24s)test-histedit-fold-non-commute.t (16.67s)test-gendoc-pt_BR.t (4.66s)test-gendoc-zh_CN.t (4.50s)test-gendoc-zh_TW.t (4.52s)test-exchange-obsmarkers-case-A3.t (19.55s)test-mq-qrefresh-interactive.t (4.37s)test-chg.t (0.10s)test-wireproto-command-rawstorefiledata.t (3.72s)test-static-http.t (12.52s)test-histedit-non-commute.t (16.08s)test-hgignore.t (11.60s)test-githelp.t (17.14s)test-win32text.t (11.69s)test-exchange-obsmarkers-case-C3.t (12.54s)test-gendoc-it.t (4.55s)test-gendoc-el.t (4.52s)test-gendoc-fr.t (4.47s)test-gendoc-ru.t (4.68s)test-gendoc-sv.t (4.54s)test-gendoc-da.t (4.55s)test-share-bookmarks.t#svfs (14.10s)test-share-bookmarks.t#vfs (14.16s)test-mq-qnew.t (25.01s)test-bheads.t (27.47s)test-flagprocessor.t (19.42s)test-diff-ignore-whitespace.t (15.57s)test-bookflow.t (26.70s)test-http-api.t (4.31s)test-largefiles-cache.t (16.70s)test-encoding.t (7.27s)test-rebase-rename.t (17.82s)test-convert-bzr-merges.t (0.11s)test-mq-qimport.t (20.56s)test-manifest.t (13.52s)test-url-rev.t (15.00s)test-diff-unified.t (10.16s)test-mq-qrefresh-replace-log-message.t (14.27s)test-unamend.t (23.92s)test-init.t (40.27s)test-pager-legacy.t (9.80s)test-rebase-base-flag.t (15.92s)test-histedit-base.t (8.29s)test-parseindex.t (4.92s)test-clone-r.t (13.32s)test-bad-extension.t (2.12s)test-hgweb-raw.t (4.68s)test-rebase-mq.t (18.88s)test-exchange-obsmarkers-case-D1.t (11.91s)test-hgweb-removed.t (2.31s)test-eol-patch.t (7.61s)test-automv.t (31.18s)test-exchange-obsmarkers-case-C2.t (11.46s)test-single-head.t (13.87s)test-ssh-clone-r.t#sshv1 (13.08s)test-ssh-clone-r.t#sshv2 (13.14s)test-subrepo-relative-path.t (11.42s)test-hgrc.t (6.65s)test-casecollision-merge.t (0.11s)test-http-clone-r.t (12.10s)test-convert-bzr.t (0.11s)test-bookmarks-corner-case.t (8.88s)test-rename-dir-merge.t (14.13s)test-strip-cross.t (19.44s)test-add.t (21.18s)test-histedit-no-change.t (11.89s)test-narrow-clone.t (32.33s)test-diffstat.t (13.92s)test-convert-splicemap.t (11.83s)test-http-proxy.t (4.88s)test-removeemptydirs.t (13.07s)test-fileset-generated.t (7.40s)test-bundle-phases.t (17.32s)test-exchange-obsmarkers-case-C1.t (10.93s)test-status-rev.t (6.60s)test-diff-upgrade.t (5.04s)test-pull-update.t (13.91s)test-copy.t (15.74s)test-bisect3.t (9.61s)test-conflict.t (8.14s)test-remotefilelog-prefetch.t (28.81s)test-up-local-change.t (13.31s)test-dispatch.t (10.78s)test-narrow-exchange.t#lfs-off (11.17s)test-narrow-exchange.t#lfs-on (12.80s)test-obsolete-changeset-exchange.t (8.41s)test-exchange-obsmarkers-case-D4.t (9.64s)test-eol-update.t (6.95s)test-remotefilelog-push-pull.t (18.83s)test-pull-bundle.t (9.22s)test-share.t (11.12s)test-absorb-rename.t (14.49s)test-narrow-exchange-merges.t (11.36s)test-exchange-obsmarkers-case-B5.t (11.13s)test-churn.t (10.31s)test-pull-branch.t (13.53s)test-eol-hook.t (9.21s)test-bundle-type.t (15.36s)test-remotefilelog-linknodes.t (16.36s)test-narrow-trackedcmd.t#flat (10.24s)test-narrow-trackedcmd.t#tree (10.31s)test-byteify-strings.t (0.93s)test-rebase-detach.t (14.30s)test-stream-bundle-v2.t (4.11s)test-sparse-profiles.t (10.94s)test-mq-qpush-exact.t (24.21s)test-fastannotate-protocol.t (9.66s)test-hybridencode.py (0.31s)test-rebase-bookmarks.t (16.44s)test-bookmarks-current.t (16.78s)test-convert-hg-source.t (13.60s)test-notify-changegroup.t (5.23s)test-encoding-align.t (5.75s)test-debugbuilddag.t (6.44s)test-convert-baz.t (0.11s)test-inherit-mode.t (2.23s)test-infinitepush.t (16.37s)test-histedit-non-commute-abort.t (8.20s)test-releasenotes-merging.t (6.77s)test-remotefilelog-gcrepack.t (10.26s)test-convert-hg-startrev.t (10.38s)test-show-work.t (22.45s)test-narrow-strip.t#flat#lfs-off (7.73s)test-narrow-strip.t#flat#lfs-on (9.02s)test-narrow-strip.t#tree#lfs-off (7.70s)test-narrow-strip.t#tree#lfs-on (8.87s)test-repo-compengines.t (10.15s)test-merge-commit.t (8.09s)test-audit-path.t (13.75s)test-exchange-obsmarkers-case-B4.t (11.59s)test-fastannotate.t (12.48s)test-narrow-expanddirstate.t (6.18s)test-purge.t (11.60s)test-symlinks.t (12.66s)test-exchange-obsmarkers-case-C4.t (9.71s)test-sparse-revlog.t (0.10s)test-mq-safety.t (14.68s)test-directaccess.t (9.80s)test-exchange-obsmarkers-case-A6.t (10.59s)test-exchange-obsmarkers-case-A5.t (9.62s)test-remotefilelog-local.t (18.99s)test-basic.t (7.19s)test-narrow-share.t#flat (30.23s)test-narrow-share.t#tree (30.05s)test-hgweb-csp.t (6.80s)test-histedit-bookmark-motion.t (7.23s)test-obsolete-tag-cache.t (5.14s)test-diff-binary-file.t (6.69s)test-casefolding.t (0.10s)test-mq-git.t (6.93s)test-mq-qfold.t (10.81s)test-remotefilelog-cacheprocess.t (4.59s)test-patchbomb-bookmark.t (3.99s)test-stack.t (13.54s)test-journal-share.t (6.78s)test-paths.t (13.95s)test-contrib-testparseutil.t (0.35s)test-hgweb-no-request-uri.t (1.45s)test-sparse-merges.t (11.93s)test-pathconflicts-merge.t (12.12s)test-releasenotes-parsing.t (2.60s)test-diff-indent-heuristic.t#bdiff (0.79s)test-diff-indent-heuristic.t#xdiff (1.07s)test-import-merge.t (12.73s)test-drawdag.t (9.44s)test-patchbomb-tls.t (4.04s)test-exchange-obsmarkers-case-B2.t (9.17s)test-convert-p4.t (0.10s)test-show-stack.t (23.80s)test-narrow-clone-nonlinear.t (23.79s)test-config.t (5.88s)test-mq-eol.t (6.43s)test-exchange-obsmarkers-case-A4.t (7.99s)test-convert-bzr-directories.t (0.10s)test-obsmarkers-effectflag.t (22.96s)test-rename-merge1.t (23.06s)test-fastannotate-renames.t (9.58s)test-histedit-drop.t (6.27s)test-rebase-mq-skip.t#continuecommand (11.75s)test-rebase-mq-skip.t#continueflag (11.28s)test-bookmarks-merge.t (11.07s)test-lock-badness.t (10.18s)test-repair-strip.t (5.76s)test-histedit-outgoing.t (8.88s)test-pull.t#sshv1 (7.47s)test-pull.t#sshv2 (7.48s)test-exchange-obsmarkers-case-B6.t (8.54s)test-merge-default.t (8.47s)test-extension-timing.t (0.89s)test-match.py (0.25s)test-rebase-emptycommit.t (8.73s)test-cbor.py (0.84s)test-debugbundle.t (3.18s)test-copy-move-merge.t (9.25s)test-profile.t (18.10s)test-convert-tla.t (1.26s)test-mq-qclone-http.t (17.95s)test-exchange-obsmarkers-case-A2.t (7.36s)test-exchange-obsmarkers-case-D2.t (17.06s)test-status-terse.t (16.62s)test-merge7.t (3.99s)test-phase-archived.t (4.59s)test-hgweb-no-path-info.t (1.44s)test-subrepo-missing.t (15.40s)test-pathconflicts-update.t (14.84s)test-show.t (14.79s)test-addremove-similar.t (14.79s)test-contrib.t (1.75s)test-unionrepo.t (14.38s)test-flags.t (14.19s)test-remotefilelog-gc.t (14.06s)test-commit-multiple.t (13.69s)test-commit-unresolved.t#abortcommand (13.62s)test-commit-unresolved.t#abortflag (13.19s)test-import-eol.t (13.13s)test-logtoprocess.t (12.83s)test-mq-missingfiles.t (13.03s)test-sparse-import.t (12.76s)test-rebase-transaction.t#continuecommand (12.86s)test-rebase-transaction.t#continueflag (12.67s)test-identify.t (12.45s)test-default-push.t (11.97s)test-merge-subrepos.t (11.82s)test-narrow-clone-no-ellipsis.t (21.45s)test-filebranch.t (11.46s)test-mq-qdelete.t (11.10s)test-convert-datesort.t (11.07s)test-sidedata.t (10.67s)test-update-atomic.t (10.16s)test-mq-merge.t (10.14s)test-pull-r.t (8.22s)test-pending.t (7.37s)test-clone-update-order.t (5.84s)test-fastannotate-perfhack.t (9.37s)test-origbackup-conflict.t (5.63s)test-merge-local.t (7.04s)test-narrow-pull.t (18.46s)test-remotefilelog-http.t (6.49s)test-bugzilla.t (2.48s)test-exchange-obsmarkers-case-D3.t (8.82s)test-remote-hidden.t (5.81s)test-narrow-shallow.t (18.93s)test-worker.t (2.51s)test-branch-option.t (9.90s)test-merge-halt.t (6.50s)test-empty-group.t (5.02s)test-mac-packages.t (0.15s)test-children.t (6.54s)test-fix-metadata.t (0.79s)test-http-branchmap.t (4.36s)test-parents.t (6.41s)test-diff-change.t (7.74s)test-extdata.t (7.41s)test-bundle2-pushback.t#sshv1 (4.08s)test-bundle2-pushback.t#sshv2 (4.16s)test-rebuildstate.t (6.69s)test-narrow-merge.t#flat (8.42s)test-narrow-merge.t#tree (8.50s)test-exchange-obsmarkers-case-B3.t (7.97s)test-mq-pull-from-bundle.t (7.90s)test-remotefilelog-corrupt-cache.t (5.50s)test-amend-subrepo.t#obsstore-off (8.88s)test-amend-subrepo.t#obsstore-on (8.61s)test-merge-internal-tools-pattern.t (5.45s)test-run-tests.py (0.25s)test-issue672.t (3.70s)test-extensions-afterloaded.t (5.02s)test-tools.t (1.21s)test-fastannotate-corrupt.t (4.55s)test-narrow-commit.t#flat (9.46s)test-narrow-commit.t#tree (9.50s)test-eol-clone.t (3.13s)test-wireproto-serverreactor.py (0.32s)test-excessive-merge.t (4.80s)test-relink.t (3.23s)test-mq-qqueue.t (11.25s)test-narrow-rebase.t#continuecommand (7.86s)test-narrow-rebase.t#continueflag (8.05s)test-push-cgi.t (2.03s)test-convert-darcs.t (0.98s)test-record.t (1.30s)test-remotefilelog-clone-tree.t (5.06s)test-patch.t (3.94s)test-hgweb-non-interactive.t (1.19s)test-sqlitestore.t (2.47s)test-remotefilelog-clone.t (5.06s)test-arbitraryfilectx.t (2.39s)test-remotefilelog-sparse.t (13.16s)test-cache-abuse.t (15.83s)test-rebase-backup.t (5.96s)test-simple-update.t (7.08s)test-pathconflicts-basic.t (6.77s)test-committer.t (4.86s)test-exchange-obsmarkers-case-B7.t (7.61s)test-pull-http.t (4.36s)test-remotefilelog-bundle2-legacy.t (0.71s)test-exchange-obsmarkers-case-B1.t (7.57s)test-remotefilelog-log.t (6.37s)test-mq-qdiff.t (6.98s)test-bookmarks-rebase.t (5.85s)test-exchange-obsmarkers-case-A7.t (6.70s)test-serve.t (6.48s)test-revset-outgoing.t (4.75s)test-import-context.t (1.99s)test-remotefilelog-bundle2.t (7.10s)test-eol-add.t (3.60s)test-bundle-vs-outgoing.t (4.97s)test-rebase-partial.t (4.84s)test-update-names.t (6.74s)test-mailmap.t (4.30s)test-remotefilelog-bundles.t (5.89s)test-merge-remove.t (6.42s)test-convert-tagsbranch-topology.t (1.62s)test-requires.t (3.58s)test-locate.t (9.32s)test-merge-closedheads.t (8.45s)test-rename-after-merge.t (6.99s)test-wireproto-clientreactor.py (0.31s)test-contrib-dumprevlog.t (3.71s)test-remotefilelog-pull-noshallow.t (4.07s)test-debugextensions.t (1.56s)test-narrow-clone-stream.t#flat-fncache (22.70s)test-narrow-clone-stream.t#flat-nofncache (22.63s)test-narrow-clone-stream.t#tree (22.62s)test-rebase-legacy.t#continuecommand (1.67s)test-rebase-legacy.t#continueflag (1.42s)test-issue1306.t (3.34s)test-lfs-bundle.t (6.53s)test-issue1175.t (6.38s)test-cat.t (8.39s)test-nointerrupt.t (4.81s)test-issue660.t (6.95s)test-largefiles-small-disk.t (1.84s)test-convert-clonebranches.t (5.77s)test-oldcgi.t (1.65s)test-impexp-branch.t (4.94s)test-narrow-clone-non-narrow-server.t (9.38s)test-histedit-no-backup.t#abortcommand (2.93s)test-histedit-no-backup.t#abortflag (2.98s)test-issue586.t (6.07s)test-unified-test.t (0.86s)test-rebase-templates.t (3.96s)test-remotefilelog-tags.t (4.81s)test-symlink-placeholder.t (3.52s)test-merge6.t (4.46s)test-narrow-copies.t (6.62s)test-server-view.t (4.76s)test-rebase-issue-noparam-single-rev.t (6.14s)test-dirstate.t (4.26s)test-close-head.t (5.06s)test-url-download.t (4.90s)test-merge-revert2.t (8.47s)test-verify-repo-operations.py (0.15s)test-addremove.t (6.16s)test-mq-qrename.t (10.92s)test-narrow-update.t (6.23s)test-mq-symlinks.t (8.87s)test-ssh-repoerror.t (5.15s)test-wsgirequest.py (0.41s)test-double-merge.t (2.37s)test-narrow-patch.t#flat (3.02s)test-narrow-patch.t#tree (3.15s)test-glog-topological.t (2.33s)test-sparse-verbose-json.t (3.69s)test-merge9.t (4.85s)test-context-metadata.t (2.83s)test-patch-offset.t (0.84s)test-log-exthook.t (1.35s)test-newcgi.t (1.21s)test-issue1802.t (3.76s)test-update-reverse.t (3.26s)test-wireproto-command-branchmap.t (3.40s)test-pushvars.t (2.99s)test-histedit-templates.t (2.62s)test-hgwebdirsym.t (4.20s)test-manifest.py (2.70s)test-revlog-raw.py (0.74s)test-merge-symlinks.t (1.91s)test-branch-tag-confict.t (2.61s)test-narrow-debugcommands.t (3.25s)test-custom-filters.t (2.29s)test-sparse-clone.t (2.11s)test-issue2137.t (1.05s)test-remotefilelog-partial-shallow.t (3.83s)test-eolfilename.t (2.96s)test-merge10.t (3.65s)test-journal-exists.t (2.85s)test-revlog-v2.t (2.19s)test-diffdir.t (5.33s)test-schemes.t (3.16s)test-issue522.t (3.09s)test-histedit-merge-tools.t (2.36s)test-mq-qgoto.t (7.30s)test-revlog.t (1.83s)test-newercgi.t (1.22s)test-url.py (0.24s)test-editor-filename.t (1.79s)test-import-unknown.t (5.74s)test-unbundlehash.t (2.15s)test-narrow-sparse.t#flat (3.55s)test-narrow-sparse.t#tree (3.63s)test-wireproto-command-known.t (2.50s)test-missing-capability.t (3.00s)test-wireproto-command-listkeys.t (3.03s)test-convert-identity.t (3.33s)test-merge-revert.t (8.58s)test-wireproto-command-heads.t (2.73s)test-encode.t (3.60s)test-permissions.t (2.71s)test-casecollision.t (5.62s)test-ancestor.py (1.07s)test-update-dest.t (2.83s)test-known.t (4.23s)test-sparse-fsmonitor.t (0.01s)test-no-symlinks.t (0.12s)test-convert-authormap.t (1.94s)test-remotefilelog-datapack.py (1.82s)test-subrepo-paths.t (1.86s)test-sparse-requirement.t (1.89s)test-confused-revert.t (4.79s)test-debian-packages.t (0.36s)test-remotefilelog-permissions.t (4.64s)test-fuzz-targets.t (0.40s)test-issue1993.t (2.35s)test-issue1502.t (2.97s)test-clone-cgi.t (1.18s)test-sparse-clear.t (2.68s)test-simplemerge.py (0.24s)test-websub.t (1.77s)test-rebase-brute-force.t (2.38s)test-revlog-mmapindex.t (18.03s)test-merge2.t (5.78s)test-diff-antipatience.t#bdiff (0.87s)test-diff-antipatience.t#xdiff (1.13s)test-issue1877.t (4.02s)test-empty-file.t (3.28s)test-gpg.t (2.14s)test-lrucachedict.py (0.26s)test-hgk.t (2.33s)test-changelog-exec.t (2.96s)test-diff-hashes.t (2.33s)test-absorb-edit-lines.t (2.79s)test-remotefilelog-wireproto.t (4.04s)test-mactext.t (1.37s)test-convert-bzr-ghosts.t (0.11s)test-bookmarks-strip.t (3.24s)test-docker-packaging.t (0.23s)test-narrow-acl.t (3.53s)test-remotefilelog-keepset.t (3.11s)test-lock.py (0.24s)test-remotefilelog-histpack.py (3.90s)test-remotefilelog-bad-configs.t (3.06s)test-diff-subdir.t (2.04s)test-convert-bzr-114.t (0.10s)test-trusted.py (0.33s)test-narrow-debugrebuilddirstate.t (2.34s)test-unrelated-pull.t (2.36s)test-parseindex2.py (0.41s)test-diff-reverse.t (2.57s)test-revset-dirstate-parents.t (5.47s)test-wireproto-command-pushkey.t (1.93s)test-update-issue1456.t (3.50s)test-empty.t (1.76s)test-merge5.t (3.07s)test-wireproto-framing.py (0.25s)test-narrow-archive.t (3.45s)test-diff-copy-depth.t (4.96s)test-convert-bzr-treeroot.t (0.10s)test-hgweb-bundle.t (2.12s)test-absorb-unfinished.t (1.60s)test-mq-qimport-fail-cleanup.t (1.88s)test-fix-clang-format.t (1.53s)test-manifest-merging.t (2.19s)test-linerange.py (0.24s)test-issue619.t (2.28s)test-merge8.t (2.39s)test-issue842.t (2.38s)test-remotefilelog-blame.t (4.12s)test-linelog.py (2.74s)test-filecache.py (1.18s)test-revlog-group-emptyiter.t (1.65s)test-pathencode.py (0.58s)test-propertycache.py (0.66s)test-demandimport.py (0.43s)test-archive-symlinks.t (1.60s)test-absorb-strip.t (1.49s)test-pull-permission.t (1.43s)test-issue5979.t (2.98s)test-rust-ancestor.py (0.20s)test-revisions.t (3.94s)test-merge4.t (2.48s)test-absorb-filefixupstate.py (0.43s)test-wireproto-command-lookup.t (1.55s)test-phabricator.t (0.49s)test-context.py (0.50s)test-issue612.t (2.31s)test-debugindexdot.t (2.58s)test-eol-tag.t (1.65s)test-batching.py (0.34s)test-bdiff.py (0.24s)test-hgweb-auth.py (0.22s)test-minirst.py (0.28s)test-nested-repo.t (2.92s)test-execute-bit.t (2.62s)test-username-newline.t (1.01s)test-fastannotate-revmap.py (0.42s)test-issue4074.t (2.01s)test-remotefilelog-share.t (2.43s)test-revlog-packentry.t (1.30s)test-dirstate-nonnormalset.t (2.00s)test-ui-config.py (0.47s)test-diff-issue2761.t (2.26s)test-atomictempfile.py (0.25s)test-strict.t (2.04s)test-util.py (0.24s)test-diff-newlines.t (1.08s)test-rust-discovery.py (0.19s)test-empty-dir.t (1.53s)test-storage.py (1.84s)test-absorb-phase.t (1.99s)test-annotate.py (0.26s)test-extra-filelog-entry.t (1.58s)test-debugrename.t (2.06s)test-issue1438.t (2.14s)test-issue1102.t (1.86s)test-fastannotate-diffopts.t (1.03s)test-revert-unknown.t (1.82s)test-bad-pull.t (1.55s)test-revert-flags.t (1.66s)test-simplekeyvaluefile.py (0.27s)test-issue1089.t (1.67s)test-doctest.py (1.08s)test-backwards-remove.t (1.37s)test-wireproto.py (0.32s)test-contrib-emacs.t (0.51s)test-cappedreader.py (0.26s)test-xdg.t (0.33s)test-dirstate-backup.t (0.52s)test-mq-qsave.t (1.16s)test-encoding-func.py (0.20s)test-extensions-wrapfunction.py (0.33s)test-walkrepo.py (0.40s)test-revlog-ancestry.py (0.55s)test-ui-verbosity.py (0.38s)test-filelog.py (0.42s)test-sshserver.py (0.33s)test-hg-parseurl.py (0.38s)test-symlink-os-yes-fs-no.py (1.40s)test-minifileset.py (0.28s)test-config-env.py (0.29s)test-duplicateoptions.py (0.51s)test-lfs-pointer.py (0.42s)test-hgwebdir-paths.py (0.33s)test-ui-color.py (0.41s)test-status-inprocess.py (0.37s)test-dispatch.py (0.43s)test-mdiff.py (0.21s)