Job try-b78cfa589c8c93015b82d1b014890a4636080815-debian10-cpython-3.7-0

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

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

--- /hgwork/src/tests/test-check-module-imports.t
+++ /hgwork/src/tests/test-check-module-imports.t.err
@@ -38,3 +38,6 @@
   > -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
+  [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-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.7.4 (default, Oct 16 2019, 02:25:16) [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.8bmy1ijq/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.7.4 (default, Oct 16 2019, 02:25:16) [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.8bmy1ijq/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 97, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 996, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 863, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/lib/python/hgext/fsmonitor/__init__.py", line 188, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 108, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/fsmonitor/__init__.py", line 195, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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
@@ -421,36 +421,28 @@
   >   -m `"$PYTHON" -c 'print("àáâãä")'`
   $ hg --traceback --cwd b --encoding utf-8 pull ../a |    >   "$PYTHON" $TESTTMP/filter.py
+  error: incoming.notify hook raised an exception: 'ascii' codec can't encode characters in position 42-51: ordinal not in range(128)
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/lib/python/hgext/notify.py", line 553, in hook
+      n.send(ctx, count, data)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/notify.py", line 406, in send
+      msg = mail.mimeencode(self.ui, payload, self.charsets, self.test)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/mail.py", line 423, in mimeencode
+      return mimetextqp(s, b'plain', cs)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/mail.py", line 298, in mimetextqp
+      msg.set_payload(body, cs)
+    File "/hgdev/pyenv/versions/3.7.4/lib/python3.7/email/message.py", line 315, in set_payload
+      payload = payload.encode(charset.output_charset)
+  UnicodeEncodeError: 'ascii' codec can't encode characters in position 42-51: ordinal not in range(128)
   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
+  new changesets 5e14b89ad3da
   (run 'hg update' to get a working copy)
 
 long lines
@@ -470,48 +462,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 fecd12eab950
+  error: incoming.notify hook failed: decoding near 'nononononoф': 'ascii' codec can't decode byte 0xd1 in position 1328: ordinal not in range(128)! (esc)
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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 1328: ordinal not in range(128)
+  
+  During handling of the above exception, another exception occurred:
+  
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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.8bmy1ijq/install/lib/python/hgext/notify.py", line 553, in hook
+      n.send(ctx, count, data)
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/hgext/notify.py", line 387, in send
+      msg = p.parsestr(encoding.strfromlocal(data))
+    File "/hgwork/tmp/hgtests.8bmy1ijq/install/lib/python/mercurial/encoding.py", line 223, in unifromlocal
+      return fromlocal(s).decode('utf-8')
+    File "/hgwork/tmp/hgtests.8bmy1ijq/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 1328: 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 +515,7 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets f7e5aaed4080
+  new changesets cfdce462aac0
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
@@ -548,11 +523,11 @@
   Date: * (glob)
   Subject: test
   From: test@test.com
-  X-Hg-Notification: changeset f7e5aaed4080
-  Message-Id: <hg.f7e5aaed4080.*.*@*> (glob)
+  X-Hg-Notification: changeset cfdce462aac0
+  Message-Id: <hg.cfdce462aac0.1571195006.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
   To: baz@test.com, foo@bar, notify@example.com
   
-  changeset f7e5aaed4080 in b
+  changeset cfdce462aac0 in b
   description: test
   (run 'hg update' to get a working copy)
 
@@ -570,7 +545,7 @@
   adding manifests
   adding file changes
   added 1 changesets with 0 changes to 0 files (+1 heads)
-  new changesets 645eb6690ecf
+  new changesets 424ada2957e5
   MIME-Version: 1.0
   Content-Type: text/plain; charset="us-ascii"
   Content-Transfer-Encoding: 7bit
@@ -578,11 +553,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 424ada2957e5
+  Message-Id: <hg.424ada2957e5.1571195006.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 424ada2957e5 in b
   description: test
   (run 'hg heads' to see heads)
 
@@ -599,12 +574,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 eec6221c8a43
+  Message-Id: <hg.eec6221c8a43.1571195007.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset eec6221c8a43 in $TESTTMP/b
+  details: http://test/b?cmd=changeset;node=eec6221c8a43
   description: default template
 
 with style:
@@ -628,11 +603,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 7955a56097d3
+  Message-Id: <hg.7955a56097d3.1571195008.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 7955a56097d3
 
 with template (overrides style):
 
@@ -649,10 +624,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: 82bb0b6eb499: with template
+  From: test@test.com
+  X-Hg-Notification: changeset 82bb0b6eb499
+  Message-Id: <hg.82bb0b6eb499.1571195008.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
   To: baz@test.com, foo@bar
   
   with template
@@ -682,21 +657,21 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets b86bc16ff894
+  new changesets dfca204f4cee
   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 dfca204f4cee
+  Message-Id: <hg.dfca204f4cee.1571195009.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset dfca204f4cee
   diffs (11 lines):
   
-  diff -r 14721b538ae3 -r b86bc16ff894 f1
+  diff -r 82bb0b6eb499 -r dfca204f4cee 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 +700,21 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets e81040e9838c
+  new changesets 23ea51ca9d20
   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 23ea51ca9d20
+  Message-Id: <hg.23ea51ca9d20.1571195009.4725642083385688817@ip-172-31-44-191.us-west-2.compute.internal>
+  To: baz@test.com, foo@bar
+  
+  changeset 23ea51ca9d20
   diffs (12 lines):
   
-  diff -r b86bc16ff894 -r e81040e9838c f1
+  diff -r dfca204f4cee -r 23ea51ca9d20 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
155.8stest-merge-combination.t
118.2stest-revset.t
103.7stest-obsolete-bundle-strip.t
101.3stest-bookmarks-pushpull.t#b2-binary
101.0stest-bookmarks-pushpull.t#b2-pushkey
100.2stest-subrepo.t
95.3stest-obsolete.t
90.1stest-largefiles.t
89.7stest-log.t
88.1stest-template-functions.t
87.2stest-graft.t#abortcommand
86.7stest-graft.t#abortflag
81.1stest-mq.t
78.7stest-largefiles-misc.t
77.5stest-glog-beautifygraph.t
77.5stest-glog.t
77.2stest-rebase-obsolete.t
77.2stest-import.t
73.3stest-obsmarker-template.t
70.3stest-merge-tools.t
66.2stest-http-permissions.t
65.4stest-bundle2-exchange.t#sshv2
65.1stest-bundle2-exchange.t#sshv1
64.6stest-fix.t
61.9stest-commit-amend.t
61.8stest-shelve.t#stripbased
61.5stest-update-branches.t
61.1stest-shelve.t#phasebased
61.0stest-check-pylint.t
59.0stest-revset2.t
58.9stest-rename-merge2.t
57.7stest-strip.t
57.3stest-largefiles-update.t
56.6stest-subrepo-git.t
56.4stest-copies.t#compatibility
56.3stest-bookmarks.t
56.2stest-copies.t#sidedata
56.1stest-copies.t#filelog
56.0stest-copies.t#changeset
55.5stest-shelve2.t#phasebased#abortcommand#continuecommand
55.4stest-shelve2.t#phasebased#abortflag#continuecommand
55.4stest-shelve2.t#phasebased#abortcommand#continueflag
55.2stest-shelve2.t#phasebased#abortflag#continueflag
54.2stest-shelve2.t#stripbased#abortcommand#continueflag
54.2stest-shelve2.t#stripbased#abortcommand#continuecommand
54.1stest-shelve2.t#stripbased#abortflag#continuecommand
53.5stest-shelve2.t#stripbased#abortflag#continueflag
53.4stest-phases-exchange.t
52.9stest-keyword.t
52.5stest-merge-force.t
51.0stest-lfs.t
50.9stest-push-warn.t
50.7stest-template-basic.t
49.4stest-mq-subrepo.t
49.2stest-push-race.t#unrelated
49.1stest-obsolete-divergent.t
49.0stest-push-race.t#strict
48.8stest-merge-changedelete.t
48.7stest-mv-cp-st-diff.t
48.7stest-template-keywords.t
48.5stest-narrow.t#flat#lfs-on
48.5stest-narrow.t#tree#lfs-on
48.2stest-clone.t#sshv1
48.1stest-run-tests.t
47.1stest-clone.t#sshv2
46.9stest-annotate.t
46.9stest-transplant.t#continueflag
46.8stest-transplant.t#commandmode
46.7stest-revert.t
46.6stest-copytrace-heuristics.t
45.4stest-mq-header-date.t
44.1stest-mq-header-from.t
44.0stest-convert-filemap.t
43.9stest-bisect.t
41.6stest-fileset.t
41.0stest-narrow.t#tree#lfs-off
40.6stest-resolve.t
40.5stest-narrow.t#flat#lfs-off
40.4stest-rebase-inmemory.t
40.0stest-tags.t
39.7stest-template-map.t
38.8stest-uncommit.t
37.6stest-rebase-scenario-global.t
37.0stest-init.t
36.5stest-tag.t
36.3stest-subrepo-deep-nested-change.t
35.9stest-backout.t
35.2stest-contrib-perf.t
35.2stest-treemanifest.t
34.5stest-treediscovery.t
34.4stest-remotefilelog-repack.t
34.1stest-mq-guards.t
33.7stest-branches.t
33.4stest-ssh-proto.t
33.1stest-censor.t
31.9stest-hook.t
31.6stest-commit-interactive.t
31.6stest-commit.t
31.3stest-rebase-collapse.t
31.2stest-check-pyflakes.t
31.1stest-bisect2.t
31.1stest-check-code.t
30.9stest-rename.t
30.8stest-remotefilelog-bgprefetch.t
30.7stest-help.t
30.7stest-copies-unrelated.t#compatibility
30.7stest-copies-unrelated.t#sidedata
30.7stest-remotefilelog-repack-fast.t
30.6stest-copies-unrelated.t#changeset
30.6stest-narrow-share.t#flat
30.5stest-status.t
30.5stest-alias.t
30.4stest-copies-unrelated.t#filelog
30.4stest-bundle.t
30.1stest-histedit-fold.t
30.0stest-narrow-share.t#tree
29.3stest-hgwebdir.t
29.3stest-narrow-widen-no-ellipsis.t#tree
29.1stest-largefiles-wireproto.t#sshv2
29.1stest-largefiles-wireproto.t#sshv1
29.1stest-narrow-widen-no-ellipsis.t#flat
29.0stest-ssh.t#sshv2
28.9stest-narrow-clone.t
28.8stest-archive.t
28.8stest-ssh.t#sshv1
28.6stest-automv.t
28.2stest-subrepo-svn.t
28.2stest-rebase-abort.t#abortflag#continueflag
28.2stest-newbranch.t
28.1stest-https.t
28.1stest-rebase-abort.t#abortcommand#continuecommand
28.1stest-rebase-abort.t#abortcommand#continueflag
28.0stest-fastannotate-hg.t
27.9stest-mq-qpush-fail.t
27.8stest-rebase-abort.t#abortflag#continuecommand
27.4stest-narrow-widen.t#flat
27.4stest-narrow-widen.t#tree
27.2stest-merge-no-file-change.t
27.2stest-extension.t
27.0stest-issue3084.t
26.9stest-histedit-obsolete.t#abortcommand
26.9stest-fetch.t
26.9stest-obshistory.t
26.6stest-eol.t
26.6stest-phases.t
26.5stest-ssh-bundle1.t#sshv1
26.5stest-convert-cvs-detectmerge.t
26.5stest-histedit-obsolete.t#abortflag
26.5stest-ssh-bundle1.t#sshv2
26.1stest-acl.t
25.6stest-histedit-arguments.t#abortflag
25.5stest-histedit-arguments.t#abortcommand
25.3stest-convert-git.t
25.3stest-bheads.t
25.1stest-remotefilelog-prefetch.t
24.8stest-setdiscovery.t
24.7stest-http-bad-server.t
24.6stest-convert-hg-sink.t
24.5stest-show-stack.t
24.4stest-narrow-clone-nonlinear.t
24.3stest-absorb.t
24.3stest-bookflow.t
24.2stest-convert-cvs.t
24.2stest-obsolete-distributed.t
24.0stest-rename-merge1.t
23.9stest-obsmarkers-effectflag.t
23.5stest-import-git.t
23.3stest-git-export.t
23.1stest-lfs-serve.t#lfsremote-on
23.0stest-split.t#obsstore-on
22.9stest-patchbomb.t
22.9stest-branch-change.t
22.9stest-rebase-cache.t
22.9stest-mq-qnew.t
22.6stest-grep.t
22.4stest-upgrade-repo.t
22.4stest-merge1.t
22.1stest-mq-qpush-exact.t
22.1stest-remove.t
22.1stest-sparse.t
21.9stest-audit-subrepo.t
21.9stest-hghave.t
21.9stest-narrow-shallow-merges.t
21.9stest-unamend.t
21.8stest-amend.t#obsstore-on
21.8stest-treediscovery-legacy.t
21.7stest-rebase-dest.t
21.7stest-bundle-r.t
21.5stest-rebase-parameters.t
21.5stest-amend.t#obsstore-off
21.5stest-walk.t
21.2stest-convert-cvs-synthetic.t
21.0stest-histedit-edit.t
20.9stest-split.t#obsstore-off
20.6stest-commandserver.t
20.6stest-debugcommands.t
20.5stest-copy-move-merge.t
20.5stest-http.t
20.4stest-show-work.t
20.4stest-narrow-clone-stream.t#flat-nofncache
20.3stest-rebase-newancestor.t
20.2stest-narrow-clone-stream.t#flat-fncache
20.1stest-narrow-clone-stream.t#tree
20.1stest-rollback.t
20.1stest-hgweb-commands.t
20.0stest-parse-date.t
20.0stest-clone-uncompressed.t#stream-bundle2

Timeline

test-contrib-check-code.t (1.49s)test-contrib-perf.t (35.21s)test-merge-combination.t (155.75s)test-obsolete-checkheads.t (14.95s)test-run-tests.t (48.11s)test-check-code.t (31.09s)test-contrib-check-commit.t (0.17s)test-imports-checker.t (0.88s)test-push-checkheads-unpushed-D4.t (6.76s)test-push-checkheads-unpushed-D5.t (6.74s)test-push-race.t#strict (49.00s)test-push-race.t#unrelated (49.18s)test-check-py3-compat.t (5.23s)test-push-checkheads-pruned-B8.t (7.38s)test-push-checkheads-superceed-A6.t (6.47s)test-push-checkheads-superceed-A7.t (6.47s)test-push-checkheads-unpushed-D3.t (6.51s)test-largefiles-update.t (57.31s)test-push-checkheads-pruned-B5.t (5.74s)test-push-checkheads-unpushed-D2.t (5.58s)test-push-checkheads-unpushed-D7.t (6.59s)test-rebase-check-restore.t (6.68s)test-push-checkheads-pruned-B2.t (4.98s)test-push-checkheads-pruned-B3.t (4.86s)test-push-checkheads-pruned-B4.t (4.79s)test-push-checkheads-superceed-A2.t (5.62s)test-push-checkheads-superceed-A3.t (5.54s)test-push-checkheads-partial-C1.t (4.48s)test-push-checkheads-partial-C2.t (4.48s)test-push-checkheads-partial-C3.t (4.30s)test-push-checkheads-partial-C4.t (4.21s)test-push-checkheads-pruned-B6.t (4.95s)test-push-checkheads-pruned-B7.t (4.94s)test-push-checkheads-superceed-A8.t (5.15s)test-push-checkheads-unpushed-D6.t (5.36s)test-push-checkheads-unpushed-D1.t (4.38s)test-subrepo-svn.t (28.25s)test-push-checkheads-superceed-A4.t (4.02s)test-push-checkheads-superceed-A5.t (4.06s)test-push-checkheads-pruned-B1.t (3.30s)test-push-checkheads-superceed-A1.t (3.54s)test-copytrace-heuristics.t (46.60s)test-check-config.t (12.18s)test-glog-beautifygraph.t (77.53s)test-gendoc-ja.t (4.46s)test-check-module-imports.t (12.85s)test-convert-cvs.t (24.22s)test-help.t (30.72s)test-obsolete-bounds-checking.t (0.95s)test-gendoc.t (5.87s)test-glog.t (77.53s)test-convert-svn-sink.t (19.80s)test-check-help.t (9.47s)test-patchbomb.t (22.95s)test-convert-svn-source.t (0.12s)test-obsolete-bundle-strip.t (103.71s)test-check-pyflakes.t (31.21s)test-abort-checkin.t (0.89s)test-http-bad-server.t (24.73s)test-ssh-proto-unbundle.t (19.54s)test-acl.t (26.12s)test-obsmarker-template.t (73.32s)test-check-commit.t (1.83s)test-check-shbang.t (2.23s)test-convert-svn-move.t (0.11s)test-check-interfaces.py (0.47s)test-hgweb-commands.t (20.06s)test-hgweb-symrev.t (18.96s)test-obsolete.t (95.33s)test-upgrade-repo.t (22.45s)test-extension.t (27.16s)test-ssh-proto.t (33.39s)test-log.t (89.72s)test-check-execute.t (1.43s)test-dirstate-race.t (15.59s)test-check-pylint.t (61.05s)test-graft.t#abortcommand (87.15s)test-graft.t#abortflag (86.71s)test-convert-svn-encoding.t (0.11s)test-wireproto-content-redirects.t (4.53s)test-hgweb-filelog.t (9.68s)test-hgwebdir.t (29.29s)test-wireproto-exchangev2.t (17.56s)test-bundle2-format.t (11.66s)test-template-map.t (39.71s)test-revset.t (118.25s)test-subrepo.t (100.23s)test-convert-cvs-detectmerge.t (26.53s)test-rebase-obsolete.t (77.23s)test-largefiles.t (90.08s)test-merge-tools.t (70.26s)test-hgweb-json.t (11.45s)test-convert-cvs-synthetic.t (21.19s)test-gendoc-ro.t (4.27s)test-import.t (77.17s)test-subrepo-deep-nested-change.t (36.31s)test-bundle2-exchange.t#sshv1 (65.14s)test-bundle2-exchange.t#sshv2 (65.40s)test-phases-exchange.t (53.38s)test-bookmarks-pushpull.t#b2-binary (101.29s)test-bookmarks-pushpull.t#b2-pushkey (100.97s)test-convert-cvsnt-mergepoints.t (13.04s)test-strip.t (57.68s)test-template-functions.t (88.14s)test-commit-interactive.t (31.64s)test-merge-changedelete.t (48.75s)test-lfs.t (50.99s)test-fix.t (64.56s)test-rename-merge2.t (58.90s)test-hook.t (31.95s)test-https.t (28.13s)test-highlight.t (12.44s)test-convert-git.t (25.34s)test-http-permissions.t (66.21s)test-lfs-test-server.t#git-server (0.24s)test-lfs-test-server.t#hg-server (12.65s)test-setdiscovery.t (24.83s)test-commandserver.t (20.58s)test-clone.t#sshv1 (48.22s)test-clone.t#sshv2 (47.08s)test-bookmarks.t (56.34s)test-check-clang-format.t (1.97s)test-merge-force.t (52.54s)test-revset2.t (59.02s)test-convert-cvs-branch.t (19.02s)test-shelve.t#phasebased (61.06s)test-shelve.t#stripbased (61.75s)test-largefiles-misc.t (78.70s)test-commit-amend.t (61.94s)test-branches.t (33.66s)test-http-protocol.t (13.06s)test-hgweb-diffs.t (12.49s)test-revert.t (46.73s)test-keyword.t (52.86s)test-template-keywords.t (48.72s)test-wireproto-command-filesdata.t (9.03s)test-convert-svn-branches.t (0.11s)test-mq.t (81.08s)test-convert-hg-svn.t (0.11s)test-gendoc-de.t (4.48s)test-lfs-serve-access.t (13.17s)test-wireproto-command-capabilities.t (4.10s)test-generaldelta.t (14.34s)test-subrepo-git.t (56.58s)test-lfs-serve.t#lfsremote-off (7.97s)test-lfs-serve.t#lfsremote-on (23.08s)test-check-format.t (0.25s)test-transplant.t#commandmode (46.77s)test-transplant.t#continueflag (46.94s)test-treemanifest.t (35.20s)test-tags.t (40.04s)test-phases.t (26.65s)test-template-basic.t (50.69s)test-tag.t (36.54s)test-subrepo-recursion.t (19.41s)test-hgweb.t (14.57s)test-convert.t (8.52s)test-check-jshint.t (0.30s)test-http-api-httpv2.t (8.45s)test-http.t (20.50s)test-convert-filemap.t (44.05s)test-obsolete-divergent.t (49.14s)test-annotate.t (46.94s)test-bundle.t (30.37s)test-resolve.t (40.60s)test-shelve2.t#phasebased#abortcommand#continuecommand (55.53s)test-shelve2.t#phasebased#abortcommand#continueflag (55.38s)test-shelve2.t#phasebased#abortflag#continuecommand (55.39s)test-shelve2.t#phasebased#abortflag#continueflag (55.16s)test-shelve2.t#stripbased#abortcommand#continuecommand (54.19s)test-shelve2.t#stripbased#abortcommand#continueflag (54.25s)test-shelve2.t#stripbased#abortflag#continuecommand (54.10s)test-shelve2.t#stripbased#abortflag#continueflag (53.55s)test-split.t#obsstore-off (20.85s)test-split.t#obsstore-on (22.96s)test-encoding-textwrap.t (2.57s)test-obsolete-distributed.t (24.22s)test-walk.t (21.49s)test-mv-cp-st-diff.t (48.74s)test-bisect.t (43.89s)test-convert-p4-filetypes.t (0.10s)test-notify.t (10.60s)test-rebase-scenario-global.t (37.61s)test-commit.t (31.55s)test-ssh.t#sshv1 (28.76s)test-ssh.t#sshv2 (28.98s)test-bundle2-remote-changegroup.t#sshv1 (17.39s)test-bundle2-remote-changegroup.t#sshv2 (17.67s)test-clonebundles.t (17.68s)test-wireproto-exchangev2-shallow.t (5.51s)test-import-git.t (23.53s)test-mq-header-from.t (44.11s)test-i18n.t (4.36s)test-treediscovery.t (34.52s)test-bisect2.t (31.09s)test-archive.t (28.78s)test-fileset.t (41.56s)test-push-warn.t (50.92s)test-hgweb-annotate-whitespace.t (4.76s)test-remotefilelog-repack.t (34.39s)test-debugcommands.t (20.56s)test-remove.t (22.08s)test-rebase-inmemory.t (40.35s)test-clone-uncompressed.t#stream-bundle2 (20.00s)test-clone-uncompressed.t#stream-legacy (17.63s)test-alias.t (30.51s)test-ssh-bundle1.t#sshv1 (26.54s)test-ssh-bundle1.t#sshv2 (26.49s)test-mq-header-date.t (45.37s)test-wireproto-command-changesetdata.t (10.37s)test-pull-pull-corruption.t (15.19s)test-blackbox.t (12.65s)test-convert-svn-startrev.t (0.14s)test-devel-warnings.t (5.20s)test-backout.t (35.94s)test-push-http.t#bundle1 (17.87s)test-push-http.t#bundle2 (18.15s)test-rebase-collapse.t (31.32s)test-contrib-relnotes.t (1.33s)test-update-branches.t (61.50s)test-audit-subrepo.t (21.95s)test-histedit-obsolete.t#abortcommand (26.94s)test-histedit-obsolete.t#abortflag (26.51s)test-histedit-arguments.t#abortcommand (25.50s)test-histedit-arguments.t#abortflag (25.58s)test-wireproto.t (9.47s)test-globalopts.t (11.14s)test-http-bundle1.t (18.16s)test-hgweb-descend-empties.t (2.12s)test-obshistory.t (26.86s)test-fncache.t (11.55s)test-rename.t (30.88s)test-uncommit.t (38.77s)test-mq-subrepo.t (49.43s)test-fastannotate-hg.t (27.96s)test-histedit-fold.t (30.12s)test-progress.t (4.64s)test-remotefilelog-repack-fast.t (30.68s)test-log-linerange.t (8.92s)test-extdiff.t (17.20s)test-getbundle.t (5.74s)test-largefiles-wireproto.t#sshv1 (29.09s)test-largefiles-wireproto.t#sshv2 (29.11s)test-status-color.t (18.15s)test-narrow.t#flat#lfs-off (40.51s)test-narrow.t#flat#lfs-on (48.52s)test-narrow.t#tree#lfs-off (40.97s)test-narrow.t#tree#lfs-on (48.51s)test-convert-hg-sink.t (24.59s)test-logexchange.t (16.05s)test-merge-types.t (12.83s)test-histedit-commute.t (14.59s)test-censor.t (33.06s)test-lfconvert.t (16.41s)test-histedit-edit.t (21.04s)test-remotefilelog-bgprefetch.t (30.82s)test-grep.t (22.57s)test-fetch.t (26.93s)test-copies.t#changeset (56.04s)test-copies.t#compatibility (56.35s)test-copies.t#filelog (56.07s)test-copies.t#sidedata (56.18s)test-wireproto-caching.t (5.76s)test-amend.t#obsstore-off (21.52s)test-amend.t#obsstore-on (21.82s)test-incoming-outgoing.t (13.59s)test-clone-pull-corruption.t (7.91s)test-eol.t (26.65s)test-rollback.t (20.11s)test-install.t (3.40s)test-newbranch.t (28.19s)test-bundle2-multiple-changegroups.t (7.15s)test-merge-criss-cross.t (15.28s)test-wireproto-command-manifestdata.t (6.11s)test-git-export.t (23.27s)test-infinitepush-ci.t (13.06s)test-status.t (30.53s)test-diff-color.t (7.21s)test-rebase-abort.t#abortcommand#continuecommand (28.12s)test-rebase-abort.t#abortcommand#continueflag (28.11s)test-rebase-abort.t#abortflag#continuecommand (27.84s)test-rebase-abort.t#abortflag#continueflag (28.24s)test-lfs-largefiles.t (13.53s)test-hgweb-empty.t (1.91s)test-copies-in-changeset.t#extra (17.21s)test-copies-in-changeset.t#sidedata (19.22s)test-dirstate-race2.t (1.83s)test-merge1.t (22.42s)test-infinitepush-bundlestore.t (19.78s)test-rebase-conflicts.t (13.75s)test-push.t (18.43s)test-rebase-newancestor.t (20.30s)test-convert-mtn.t (0.09s)test-narrow-shallow-merges.t (21.90s)test-mq-guards.t (34.08s)test-hghave.t (21.92s)test-convert-svn-tags.t (0.10s)test-pager.t (12.54s)test-completion.t (5.89s)test-wireproto-command-filedata.t (7.67s)test-qrecord.t (6.24s)test-mq-subrepo-svn.t (2.24s)test-revset-legacy-lookup.t (18.87s)test-rebase-interruptions.t (19.02s)test-absorb.t (24.30s)test-rebase-parameters.t (21.54s)test-hardlinks.t (13.61s)test-export.t (12.48s)test-issue3084.t (27.02s)test-merge-no-file-change.t (27.24s)test-verify.t (8.72s)test-narrow-patterns.t (15.99s)test-rebase-dest.t (21.72s)test-mq-qpush-fail.t (27.85s)test-narrow-widen-no-ellipsis.t#flat (29.08s)test-narrow-widen-no-ellipsis.t#tree (29.26s)test-bundle-r.t (21.67s)test-rebase-pull.t (18.10s)test-exchange-obsmarkers-case-A1.t (17.18s)test-branch-change.t (22.93s)test-sparse.t (22.05s)test-commit-interactive-curses.t (14.32s)test-rebase-named-branches.t (17.03s)test-fix-topology.t#obsstore-off (11.94s)test-fix-topology.t#obsstore-on (13.86s)test-import-bypass.t (17.49s)test-copies-unrelated.t#changeset (30.61s)test-copies-unrelated.t#compatibility (30.70s)test-copies-unrelated.t#filelog (30.43s)test-copies-unrelated.t#sidedata (30.68s)test-revert-interactive.t (12.66s)test-parse-date.t (20.01s)test-treediscovery-legacy.t (21.82s)test-rebase-cache.t (22.92s)test-help-hide.t (0.45s)test-journal.t (7.19s)test-releasenotes-formatting.t (12.29s)test-mq-qrefresh.t (17.57s)test-histedit-fold-non-commute.t (15.11s)test-narrow-widen.t#flat (27.44s)test-narrow-widen.t#tree (27.42s)test-gendoc-pt_BR.t (4.54s)test-gendoc-zh_CN.t (4.44s)test-gendoc-zh_TW.t (4.37s)test-exchange-obsmarkers-case-A3.t (17.82s)test-mq-qrefresh-interactive.t (4.04s)test-chg.t (0.10s)test-wireproto-command-rawstorefiledata.t (3.42s)test-static-http.t (11.31s)test-histedit-non-commute.t (14.71s)test-hgignore.t (10.63s)test-githelp.t (15.77s)test-win32text.t (10.66s)test-exchange-obsmarkers-case-C3.t (11.41s)test-gendoc-it.t (4.40s)test-gendoc-el.t (4.38s)test-gendoc-fr.t (4.36s)test-gendoc-ru.t (4.58s)test-gendoc-sv.t (4.34s)test-gendoc-da.t (4.50s)test-share-bookmarks.t#svfs (12.72s)test-share-bookmarks.t#vfs (12.80s)test-mq-qnew.t (22.85s)test-bheads.t (25.27s)test-flagprocessor.t (17.67s)test-diff-ignore-whitespace.t (14.44s)test-bookflow.t (24.27s)test-http-api.t (3.74s)test-largefiles-cache.t (14.82s)test-encoding.t (6.64s)test-rebase-rename.t (16.23s)test-convert-bzr-merges.t (0.09s)test-mq-qimport.t (18.96s)test-manifest.t (12.48s)test-url-rev.t (13.63s)test-diff-unified.t (9.34s)test-mq-qrefresh-replace-log-message.t (13.13s)test-unamend.t (21.89s)test-init.t (36.99s)test-pager-legacy.t (8.98s)test-rebase-base-flag.t (14.69s)test-histedit-base.t (7.65s)test-parseindex.t (4.43s)test-clone-r.t (12.15s)test-bad-extension.t (1.91s)test-hgweb-raw.t (3.99s)test-rebase-mq.t (17.30s)test-exchange-obsmarkers-case-D1.t (10.75s)test-hgweb-removed.t (2.00s)test-eol-patch.t (7.02s)test-automv.t (28.63s)test-exchange-obsmarkers-case-C2.t (10.48s)test-single-head.t (12.76s)test-ssh-clone-r.t#sshv1 (11.86s)test-ssh-clone-r.t#sshv2 (11.84s)test-subrepo-relative-path.t (10.31s)test-casecollision-merge.t (0.09s)test-http-clone-r.t (11.11s)test-convert-bzr.t (0.09s)test-bookmarks-corner-case.t (8.26s)test-rename-dir-merge.t (12.92s)test-strip-cross.t (17.65s)test-add.t (19.24s)test-histedit-no-change.t (10.94s)test-narrow-clone.t (28.93s)test-hgrc.t (5.56s)test-diffstat.t (12.77s)test-convert-splicemap.t (10.87s)test-http-proxy.t (4.43s)test-removeemptydirs.t (11.96s)test-fileset-generated.t (6.70s)test-bundle-phases.t (15.94s)test-exchange-obsmarkers-case-C1.t (9.91s)test-status-rev.t (6.13s)test-diff-upgrade.t (4.71s)test-pull-update.t (12.63s)test-copy.t (14.37s)test-bisect3.t (8.74s)test-conflict.t (7.46s)test-remotefilelog-prefetch.t (25.11s)test-up-local-change.t (12.26s)test-dispatch.t (9.64s)test-narrow-exchange.t#lfs-off (10.03s)test-narrow-exchange.t#lfs-on (11.69s)test-obsolete-changeset-exchange.t (7.71s)test-exchange-obsmarkers-case-D4.t (8.80s)test-remotefilelog-push-pull.t (16.36s)test-pull-bundle.t (8.58s)test-share.t (9.50s)test-narrow-exchange-merges.t (10.23s)test-phabricator.t (8.01s)test-absorb-rename.t (13.15s)test-eol-update.t (6.42s)test-exchange-obsmarkers-case-B5.t (10.15s)test-churn.t (9.29s)test-pull-branch.t (12.33s)test-eol-hook.t (8.48s)test-bundle-type.t (13.89s)test-remotefilelog-linknodes.t (14.32s)test-narrow-trackedcmd.t#flat (9.11s)test-narrow-trackedcmd.t#tree (9.28s)test-byteify-strings.t (0.76s)test-rebase-detach.t (13.05s)test-stream-bundle-v2.t (3.81s)test-sparse-profiles.t (9.95s)test-mq-qpush-exact.t (22.10s)test-fastannotate-protocol.t (8.79s)test-hybridencode.py (0.27s)test-rebase-bookmarks.t (15.22s)test-bookmarks-current.t (15.32s)test-convert-hg-source.t (12.51s)test-notify-changegroup.t (4.75s)test-encoding-align.t (5.22s)test-debugbuilddag.t (5.93s)test-convert-baz.t (0.10s)test-inherit-mode.t (1.99s)test-infinitepush.t (14.55s)test-histedit-non-commute-abort.t (7.55s)test-releasenotes-merging.t (6.13s)test-remotefilelog-gcrepack.t (9.13s)test-convert-hg-startrev.t (9.47s)test-show-work.t (20.41s)test-narrow-strip.t#flat#lfs-off (6.96s)test-narrow-strip.t#flat#lfs-on (8.14s)test-narrow-strip.t#tree#lfs-off (6.99s)test-narrow-strip.t#tree#lfs-on (8.11s)test-repo-compengines.t (9.20s)test-merge-commit.t (7.36s)test-audit-path.t (12.61s)test-exchange-obsmarkers-case-B4.t (10.58s)test-fastannotate.t (11.63s)test-narrow-expanddirstate.t (5.54s)test-purge.t (10.59s)test-symlinks.t (11.64s)test-exchange-obsmarkers-case-C4.t (8.94s)test-sparse-revlog.t (0.10s)test-mq-safety.t (13.30s)test-directaccess.t (8.97s)test-exchange-obsmarkers-case-A6.t (9.59s)test-exchange-obsmarkers-case-A5.t (8.73s)test-remotefilelog-local.t (15.99s)test-basic.t (6.49s)test-narrow-share.t#flat (30.57s)test-narrow-share.t#tree (30.04s)test-hgweb-csp.t (5.72s)test-histedit-bookmark-motion.t (6.63s)test-obsolete-tag-cache.t (4.75s)test-diff-binary-file.t (6.21s)test-casefolding.t (0.10s)test-mq-git.t (6.34s)test-mq-qfold.t (10.13s)test-remotefilelog-cacheprocess.t (4.02s)test-patchbomb-bookmark.t (3.65s)test-stack.t (12.36s)test-journal-share.t (6.22s)test-contrib-testparseutil.t (0.31s)test-paths.t (13.18s)test-hgweb-no-request-uri.t (1.34s)test-sparse-merges.t (11.03s)test-pathconflicts-merge.t (11.08s)test-releasenotes-parsing.t (2.36s)test-diff-indent-heuristic.t#bdiff (0.74s)test-diff-indent-heuristic.t#xdiff (0.98s)test-import-merge.t (11.73s)test-drawdag.t (8.61s)test-patchbomb-tls.t (3.67s)test-exchange-obsmarkers-case-B2.t (8.21s)test-convert-p4.t (0.10s)test-show-stack.t (24.47s)test-narrow-clone-nonlinear.t (24.45s)test-config.t (5.38s)test-mq-eol.t (6.05s)test-exchange-obsmarkers-case-A4.t (7.18s)test-convert-bzr-directories.t (0.10s)test-obsmarkers-effectflag.t (23.88s)test-rename-merge1.t (24.04s)test-fastannotate-renames.t (8.95s)test-histedit-drop.t (5.72s)test-rebase-mq-skip.t#continuecommand (10.46s)test-rebase-mq-skip.t#continueflag (10.67s)test-bookmarks-merge.t (9.89s)test-lock-badness.t (10.00s)test-repair-strip.t (5.35s)test-histedit-outgoing.t (8.12s)test-pull.t#sshv1 (6.61s)test-pull.t#sshv2 (6.74s)test-exchange-obsmarkers-case-B6.t (7.52s)test-merge-default.t (7.92s)test-extension-timing.t (0.83s)test-match.py (0.15s)test-rebase-emptycommit.t (8.06s)test-cbor.py (0.74s)test-debugbundle.t (2.97s)test-copy-move-merge.t (20.54s)test-profile.t (19.46s)test-convert-tla.t (1.06s)test-mq-qclone-http.t (18.96s)test-exchange-obsmarkers-case-A2.t (18.59s)test-exchange-obsmarkers-case-D2.t (18.21s)test-status-terse.t (18.00s)test-merge7.t (3.60s)test-phase-archived.t (4.14s)test-hgweb-no-path-info.t (1.30s)test-subrepo-missing.t (16.98s)test-pathconflicts-update.t (16.45s)test-show.t (16.38s)test-addremove-similar.t (16.35s)test-contrib.t (1.55s)test-unionrepo.t (16.06s)test-flags.t (15.83s)test-remotefilelog-gc.t (15.78s)test-commit-multiple.t (15.65s)test-commit-unresolved.t#abortcommand (15.47s)test-commit-unresolved.t#abortflag (15.13s)test-import-eol.t (14.83s)test-logtoprocess.t (14.75s)test-mq-missingfiles.t (14.70s)test-sparse-import.t (14.40s)test-rebase-transaction.t#continuecommand (14.55s)test-rebase-transaction.t#continueflag (14.51s)test-identify.t (14.36s)test-default-push.t (13.91s)test-merge-subrepos.t (13.40s)test-narrow-clone-no-ellipsis.t (15.91s)test-filebranch.t (13.08s)test-mq-qdelete.t (12.99s)test-convert-datesort.t (12.78s)test-sidedata.t (12.31s)test-update-atomic.t (3.47s)test-mq-merge.t (8.62s)test-pending.t (6.96s)test-pull-r.t (7.45s)test-clone-update-order.t (5.26s)test-fastannotate-perfhack.t (8.54s)test-origbackup-conflict.t (5.04s)test-narrow-pull.t (16.68s)test-merge-local.t (6.35s)test-remotefilelog-http.t (5.85s)test-bugzilla.t (2.22s)test-exchange-obsmarkers-case-D3.t (8.06s)test-remote-hidden.t (5.41s)test-narrow-shallow.t (17.07s)test-worker.t (2.43s)test-branch-option.t (9.04s)test-merge-halt.t (5.99s)test-empty-group.t (4.62s)test-mac-packages.t (0.14s)test-parents.t (5.94s)test-fix-metadata.t (0.75s)test-http-branchmap.t (3.90s)test-children.t (6.07s)test-diff-change.t (7.08s)test-extdata.t (6.88s)test-bundle2-pushback.t#sshv1 (3.70s)test-bundle2-pushback.t#sshv2 (3.85s)test-narrow-merge.t#flat (7.64s)test-rebuildstate.t (6.17s)test-narrow-merge.t#tree (7.65s)test-mq-pull-from-bundle.t (7.26s)test-exchange-obsmarkers-case-B3.t (7.30s)test-remotefilelog-corrupt-cache.t (4.81s)test-amend-subrepo.t#obsstore-off (8.18s)test-amend-subrepo.t#obsstore-on (7.91s)test-merge-internal-tools-pattern.t (5.07s)test-run-tests.py (0.20s)test-issue672.t (3.31s)test-extensions-afterloaded.t (4.53s)test-tools.t (1.05s)test-fastannotate-corrupt.t (4.18s)test-narrow-commit.t#flat (8.73s)test-narrow-commit.t#tree (8.84s)test-eol-clone.t (2.88s)test-wireproto-serverreactor.py (0.29s)test-excessive-merge.t (4.49s)test-relink.t (2.95s)test-mq-qqueue.t (10.05s)test-narrow-rebase.t#continuecommand (7.19s)test-narrow-rebase.t#continueflag (7.31s)test-push-cgi.t (1.81s)test-record.t (1.17s)test-convert-darcs.t (0.84s)test-remotefilelog-clone-tree.t (4.56s)test-patch.t (3.64s)test-hgweb-non-interactive.t (1.07s)test-sqlitestore.t (2.27s)test-remotefilelog-clone.t (4.56s)test-arbitraryfilectx.t (2.21s)test-cache-abuse.t (14.58s)test-remotefilelog-sparse.t (11.61s)test-rebase-backup.t (5.51s)test-simple-update.t (6.34s)test-pathconflicts-basic.t (6.20s)test-committer.t (4.49s)test-exchange-obsmarkers-case-B7.t (6.86s)test-pull-http.t (3.81s)test-remotefilelog-bundle2-legacy.t (0.66s)test-exchange-obsmarkers-case-B1.t (6.91s)test-remotefilelog-log.t (5.36s)test-mq-qdiff.t (6.44s)test-bookmarks-rebase.t (5.37s)test-serve.t (5.45s)test-exchange-obsmarkers-case-A7.t (6.05s)test-revset-outgoing.t (4.36s)test-import-context.t (1.83s)test-remotefilelog-bundle2.t (6.23s)test-eol-add.t (3.30s)test-bundle-vs-outgoing.t (4.59s)test-rebase-partial.t (4.44s)test-update-names.t (6.12s)test-mailmap.t (3.83s)test-merge-remove.t (5.90s)test-remotefilelog-bundles.t (5.08s)test-convert-tagsbranch-topology.t (1.52s)test-requires.t (3.22s)test-locate.t (8.45s)test-merge-closedheads.t (7.61s)test-rename-after-merge.t (6.36s)test-wireproto-clientreactor.py (0.27s)test-contrib-dumprevlog.t (3.31s)test-remotefilelog-pull-noshallow.t (3.51s)test-debugextensions.t (1.42s)test-narrow-clone-stream.t#flat-fncache (20.25s)test-narrow-clone-stream.t#flat-nofncache (20.40s)test-narrow-clone-stream.t#tree (20.13s)test-rebase-legacy.t#continuecommand (1.53s)test-rebase-legacy.t#continueflag (1.27s)test-issue1306.t (3.07s)test-lfs-bundle.t (6.02s)test-issue1175.t (5.81s)test-cat.t (7.69s)test-nointerrupt.t (4.73s)test-issue660.t (6.38s)test-largefiles-small-disk.t (1.59s)test-convert-clonebranches.t (5.26s)test-oldcgi.t (1.47s)test-impexp-branch.t (4.48s)test-narrow-clone-non-narrow-server.t (8.40s)test-histedit-no-backup.t#abortcommand (2.66s)test-histedit-no-backup.t#abortflag (2.77s)test-issue586.t (5.51s)test-unified-test.t (0.74s)test-rebase-templates.t (3.65s)test-remotefilelog-tags.t (4.22s)test-merge6.t (4.10s)test-symlink-placeholder.t (3.27s)test-narrow-copies.t (5.93s)test-server-view.t (4.18s)test-rebase-issue-noparam-single-rev.t (5.66s)test-dirstate.t (3.91s)test-close-head.t (4.57s)test-url-download.t (4.30s)test-merge-revert2.t (7.94s)test-verify-repo-operations.py (0.14s)test-addremove.t (5.60s)test-mq-qrename.t (9.96s)test-narrow-update.t (5.58s)test-mq-symlinks.t (8.12s)test-ssh-repoerror.t (4.57s)test-wsgirequest.py (0.36s)test-double-merge.t (2.13s)test-narrow-patch.t#flat (2.68s)test-narrow-patch.t#tree (2.82s)test-glog-topological.t (2.19s)test-sparse-verbose-json.t (3.42s)test-merge9.t (4.41s)test-context-metadata.t (2.61s)test-patch-offset.t (0.80s)test-log-exthook.t (1.21s)test-newcgi.t (1.07s)test-issue1802.t (3.45s)test-update-reverse.t (3.00s)test-wireproto-command-branchmap.t (3.11s)test-pushvars.t (2.65s)test-histedit-templates.t (2.42s)test-hgwebdirsym.t (3.68s)test-manifest.py (2.65s)test-revlog-raw.py (0.69s)test-merge-symlinks.t (1.74s)test-branch-tag-confict.t (2.38s)test-narrow-debugcommands.t (2.91s)test-custom-filters.t (2.08s)test-sparse-clone.t (1.92s)test-issue2137.t (0.98s)test-remotefilelog-partial-shallow.t (3.41s)test-eolfilename.t (2.72s)test-merge10.t (3.40s)test-journal-exists.t (2.63s)test-revlog-v2.t (1.95s)test-diffdir.t (4.80s)test-schemes.t (2.91s)test-issue522.t (2.83s)test-histedit-merge-tools.t (2.17s)test-mq-qgoto.t (6.70s)test-revlog.t (1.65s)test-newercgi.t (1.04s)test-url.py (0.20s)test-editor-filename.t (1.66s)test-import-unknown.t (5.29s)test-unbundlehash.t (2.01s)test-narrow-sparse.t#flat (3.13s)test-narrow-sparse.t#tree (3.25s)test-wireproto-command-known.t (2.27s)test-missing-capability.t (2.64s)test-wireproto-command-listkeys.t (2.77s)test-convert-identity.t (3.12s)test-merge-revert.t (7.81s)test-wireproto-command-heads.t (2.50s)test-encode.t (3.28s)test-permissions.t (2.46s)test-casecollision.t (5.08s)test-ancestor.py (0.98s)test-update-dest.t (2.55s)test-known.t (3.80s)test-sparse-fsmonitor.t (0.01s)test-no-symlinks.t (0.09s)test-remotefilelog-datapack.py (1.79s)test-convert-authormap.t (1.75s)test-subrepo-paths.t (1.72s)test-debian-packages.t (0.38s)test-sparse-requirement.t (1.67s)test-confused-revert.t (4.32s)test-remotefilelog-permissions.t (4.03s)test-fuzz-targets.t (0.36s)test-issue1993.t (2.14s)test-issue1502.t (2.72s)test-clone-cgi.t (1.04s)test-sparse-clear.t (2.47s)test-simplemerge.py (0.21s)test-rebase-brute-force.t (2.27s)test-websub.t (1.64s)test-revlog-mmapindex.t (16.61s)test-merge2.t (5.32s)test-diff-antipatience.t#bdiff (0.79s)test-diff-antipatience.t#xdiff (1.01s)test-issue1877.t (3.67s)test-gpg.t (1.93s)test-empty-file.t (3.04s)test-lrucachedict.py (0.20s)test-hgk.t (2.15s)test-changelog-exec.t (2.68s)test-diff-hashes.t (2.16s)test-absorb-edit-lines.t (2.57s)test-remotefilelog-wireproto.t (3.50s)test-mactext.t (1.21s)test-convert-bzr-ghosts.t (0.09s)test-docker-packaging.t (0.22s)test-bookmarks-strip.t (3.02s)test-narrow-acl.t (3.24s)test-remotefilelog-keepset.t (2.71s)test-lock.py (0.21s)test-remotefilelog-histpack.py (3.71s)test-remotefilelog-bad-configs.t (2.66s)test-diff-subdir.t (1.90s)test-convert-bzr-114.t (0.11s)test-trusted.py (0.29s)test-narrow-debugrebuilddirstate.t (2.09s)test-unrelated-pull.t (2.14s)test-parseindex2.py (0.34s)test-diff-reverse.t (2.35s)test-revset-dirstate-parents.t (4.92s)test-wireproto-command-pushkey.t (1.77s)test-update-issue1456.t (3.21s)test-empty.t (1.60s)test-merge5.t (2.81s)test-wireproto-framing.py (0.21s)test-narrow-archive.t (3.13s)test-diff-copy-depth.t (4.54s)test-convert-bzr-treeroot.t (0.10s)test-hgweb-bundle.t (1.93s)test-absorb-unfinished.t (1.49s)test-mq-qimport-fail-cleanup.t (1.70s)test-fix-clang-format.t (1.44s)test-manifest-merging.t (2.02s)test-linerange.py (0.20s)test-issue619.t (2.11s)test-merge8.t (2.20s)test-issue842.t (2.15s)test-remotefilelog-blame.t (3.61s)test-linelog.py (1.76s)test-filecache.py (1.05s)test-revlog-group-emptyiter.t (1.50s)test-propertycache.py (0.58s)test-pathencode.py (0.60s)test-demandimport.py (0.38s)test-archive-symlinks.t (1.47s)test-absorb-strip.t (1.37s)test-pull-permission.t (1.29s)test-issue5979.t (2.75s)test-rust-ancestor.py (0.16s)test-revisions.t (3.62s)test-merge4.t (2.24s)test-absorb-filefixupstate.py (0.37s)test-wireproto-command-lookup.t (1.48s)test-context.py (0.45s)test-issue612.t (2.14s)test-debugindexdot.t (2.32s)test-eol-tag.t (1.52s)test-batching.py (0.32s)test-bdiff.py (0.21s)test-hgweb-auth.py (0.20s)test-nested-repo.t (2.66s)test-minirst.py (0.24s)test-execute-bit.t (2.38s)test-username-newline.t (0.94s)test-fastannotate-revmap.py (0.38s)test-issue4074.t (1.86s)test-remotefilelog-share.t (2.14s)test-revlog-packentry.t (1.18s)test-dirstate-nonnormalset.t (1.85s)test-ui-config.py (0.40s)test-diff-issue2761.t (2.14s)test-atomictempfile.py (0.20s)test-strict.t (1.97s)test-util.py (0.21s)test-diff-newlines.t (0.98s)test-rust-discovery.py (0.16s)test-empty-dir.t (1.41s)test-storage.py (1.75s)test-absorb-phase.t (1.83s)test-annotate.py (0.23s)test-extra-filelog-entry.t (1.54s)test-debugrename.t (1.90s)test-issue1438.t (2.00s)test-issue1102.t (1.70s)test-fastannotate-diffopts.t (1.03s)test-bad-pull.t (1.31s)test-revert-unknown.t (1.68s)test-revert-flags.t (1.43s)test-simplekeyvaluefile.py (0.22s)test-issue1089.t (1.55s)test-doctest.py (1.05s)test-backwards-remove.t (1.31s)test-wireproto.py (0.30s)test-contrib-emacs.t (0.39s)test-cappedreader.py (0.21s)test-xdg.t (0.32s)test-dirstate-backup.t (0.47s)test-mq-qsave.t (0.98s)test-encoding-func.py (0.16s)test-extensions-wrapfunction.py (0.28s)test-walkrepo.py (0.36s)test-revlog-ancestry.py (0.49s)test-ui-verbosity.py (0.34s)test-filelog.py (0.37s)test-sshserver.py (0.29s)test-hg-parseurl.py (0.29s)test-symlink-os-yes-fs-no.py (1.38s)test-minifileset.py (0.23s)test-config-env.py (0.25s)test-lfs-pointer.py (0.37s)test-duplicateoptions.py (0.47s)test-hgwebdir-paths.py (0.28s)test-ui-color.py (0.32s)test-status-inprocess.py (0.32s)test-dispatch.py (0.35s)test-mdiff.py (0.20s)