Job try-e82c7bc25d5515827fd9379b4a611e1478beb0d2-debian10-cpython-3.6-0

Repo:try
Node:e82c7bc25d5515827fd9379b4a611e1478beb0d2
Name:debian10-cpython-3.6
Scheduled At:2019-11-02T21:39:26
Started At:2019-11-02T21:39:35
Finished At:2019-11-02T21:47:54

Failed Tests

test-bookmarks-corner-case.t

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

test-byteify-strings.t

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

test-check-format.t

test-check-module-imports.t

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

test-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-hghave.t

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

test-highlight.t

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

test-install.t

--- /hgwork/src/tests/test-install.t
+++ /hgwork/src/tests/test-install.t.err
@@ -155,12 +155,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, Nov  2 2019, 18:14:11) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+87-e82c7bc25d55)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 98, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1156, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1024, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1005, 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.sktkoa7w/install/lib/python/hgext/fsmonitor/__init__.py", line 189, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 109, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 104, 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.sktkoa7w/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/__init__.py", line 196, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 28, 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, Nov  2 2019, 18:14:11) [GCC 8.3.0]
+  ** Mercurial Distributed SCM (version 5.2rc0+87-e82c7bc25d55)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 98, in _command
+      return self._watchmanclient.query(*watchmanargs)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1156, in query
+      self._connect()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1024, in _connect
+      self.sockpath = self._resolvesockname()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/pywatchman/__init__.py", line 1005, 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.sktkoa7w/install/lib/python/hgext/fsmonitor/__init__.py", line 189, in debuginstall
+      v = c.command(b"version")
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 109, in command
+      return self._command(*args)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 104, 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.sktkoa7w/install/bin/hg", line 36, in <module>
+      dispatch.run()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 111, in run
+      status = dispatch(req)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 250, in dispatch
+      ret = _runcatch(req) or 0
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 424, in _runcatch
+      return _callcatch(ui, _runcatchfunc)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 433, in _callcatch
+      return scmutil.callcatch(ui, func)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/scmutil.py", line 177, in callcatch
+      return func()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 414, in _runcatchfunc
+      return _dispatch(req)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1174, in _dispatch
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 862, in runcommand
+      ret = _runcommand(ui, options, cmd, d)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1185, in _runcommand
+      return cmdfunc()
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/dispatch.py", line 1171, in <lambda>
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/util.py", line 1843, in check
+      return func(*args, **kwargs)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/mercurial/debugcommands.py", line 1696, in debuginstall
+      problems += handler(ui, fm)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/__init__.py", line 196, in debuginstall
+      err = str(e)
+    File "/hgwork/tmp/hgtests.sktkoa7w/install/lib/python/hgext/fsmonitor/watchmanclient.py", line 28, 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
@@ -163,11 +163,13 @@
 
   $ cat $TESTTMP/access.log $TESTTMP/errors.log
   $LOCALIP - - [$LOGDATE$] "POST /missing/objects/batch HTTP/1.1" 404 - (glob)
+  $LOCALIP - - [02/Nov/2019 21:42:55] "{"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 - - [02/Nov/2019 21:42:55] 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 - - [02/Nov/2019 21:42:55] 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-changegroup.t

--- /hgwork/src/tests/test-notify-changegroup.t
+++ /hgwork/src/tests/test-notify-changegroup.t.err
@@ -53,7 +53,8 @@
   Subject: * (glob)
   From: test
   X-Hg-Notification: changeset cb9a9f314b8b
-  Message-Id: <*> (glob)
+  Message-Id: 
+   <hg.cb9a9f314b8b.1572731178.8441430917745521565@ip-172-31-14-219.us-west-2.compute.internal>
   To: baz, foo@bar
   
   changeset cb9a9f314b8b in $TESTTMP/a
@@ -106,7 +107,8 @@
   Subject: * (glob)
   From: test
   X-Hg-Notification: changeset cb9a9f314b8b
-  Message-Id: <*> (glob)
+  Message-Id: 
+   <hg.cb9a9f314b8b.1572731180.8441430917745521565@ip-172-31-14-219.us-west-2.compute.internal>
   To: baz, foo@bar
   
   changeset cb9a9f314b8b in $TESTTMP/a
@@ -183,7 +185,8 @@
   Subject: * (glob)
   From: committer_1
   X-Hg-Notification: changeset 84e487dddc58
-  Message-Id: <*> (glob)
+  Message-Id: 
+   <hg.84e487dddc58.1572731182.8441430917745521565@ip-172-31-14-219.us-west-2.compute.internal>
   To: baz, foo@bar
   
   changeset 84e487dddc58 in $TESTTMP/a

Skipped Tests

Long Tests

DurationTest
172.2stest-merge-combination.t
131.5stest-revset.t
116.5stest-obsolete-bundle-strip.t
113.1stest-bookmarks-pushpull.t#b2-binary
112.8stest-bookmarks-pushpull.t#b2-pushkey
110.9stest-subrepo.t
106.4stest-obsolete.t
103.6stest-largefiles.t
99.4stest-log.t
97.8stest-template-functions.t
96.7stest-graft.t#abortflag
96.4stest-graft.t#abortcommand
90.6stest-largefiles-misc.t
90.0stest-mq.t
86.2stest-glog-beautifygraph.t
85.7stest-rebase-obsolete.t
85.6stest-glog.t
85.0stest-import.t
81.1stest-obsmarker-template.t
78.5stest-merge-tools.t
74.7stest-http-permissions.t
73.5stest-bundle2-exchange.t#sshv2
73.0stest-bundle2-exchange.t#sshv1
71.6stest-fix.t
69.4stest-largefiles-update.t
68.8stest-commit-amend.t
68.5stest-shelve.t#stripbased
67.8stest-update-branches.t
67.6stest-shelve.t#phasebased
65.6stest-rename-merge2.t
65.2stest-revset2.t
63.5stest-strip.t
62.4stest-bookmarks.t
62.2stest-copies.t#sidedata
62.1stest-copies.t#compatibility
61.9stest-copies.t#filelog
61.8stest-copies.t#changeset
61.6stest-shelve2.t#phasebased#abortcommand#continuecommand
61.6stest-subrepo-git.t
61.0stest-shelve2.t#phasebased#abortcommand#continueflag
61.0stest-shelve2.t#phasebased#abortflag#continuecommand
61.0stest-shelve2.t#phasebased#abortflag#continueflag
59.7stest-shelve2.t#stripbased#abortflag#continuecommand
59.6stest-shelve2.t#stripbased#abortcommand#continuecommand
59.5stest-phases-exchange.t
59.4stest-shelve2.t#stripbased#abortflag#continueflag
59.4stest-shelve2.t#stripbased#abortcommand#continueflag
58.4stest-merge-force.t
58.0stest-check-pylint.t
57.9stest-keyword.t
56.5stest-push-warn.t
56.3stest-template-basic.t
55.6stest-lfs.t
54.8stest-obsolete-divergent.t
54.4stest-mq-subrepo.t
54.4stest-push-race.t#strict
54.4stest-merge-changedelete.t
54.3stest-template-keywords.t
54.0stest-push-race.t#unrelated
53.8stest-mv-cp-st-diff.t
53.7stest-narrow.t#flat#lfs-on
53.6stest-narrow.t#tree#lfs-on
53.2stest-clone.t#sshv1
53.0stest-clone.t#sshv2
52.2stest-run-tests.t
52.1stest-transplant.t#continueflag
52.1stest-copytrace-heuristics.t
52.1stest-annotate.t
52.0stest-revert.t
51.7stest-transplant.t#commandmode
50.0stest-mq-header-date.t
48.8stest-convert-filemap.t
48.7stest-mq-header-from.t
48.4stest-bisect.t
46.7stest-narrow.t#tree#lfs-off
46.5stest-fileset.t
46.3stest-narrow.t#flat#lfs-off
45.1stest-resolve.t
44.5stest-rebase-inmemory.t
44.2stest-tags.t
43.9stest-template-map.t
43.3stest-uncommit.t
41.5stest-rebase-scenario-global.t
41.0stest-init.t
40.7stest-subrepo-deep-nested-change.t
40.5stest-tag.t
39.5stest-remotefilelog-repack.t
39.4stest-backout.t
39.0stest-treemanifest.t
38.9stest-copies-unrelated.t#changeset
38.8stest-copies-unrelated.t#filelog
38.7stest-copies-unrelated.t#sidedata
38.7stest-copies-unrelated.t#compatibility
38.1stest-treediscovery.t
37.9stest-mq-guards.t
37.6stest-contrib-perf.t
37.5stest-ssh-proto.t
37.0stest-branches.t
36.7stest-censor.t
36.6stest-hook.t
35.3stest-commit.t
35.2stest-commit-interactive.t
35.2stest-remotefilelog-repack-fast.t
34.6stest-rebase-collapse.t
34.5stest-rename.t
34.1stest-bisect2.t
34.1stest-help.t
34.0stest-remotefilelog-bgprefetch.t
33.9stest-status.t
33.8stest-hgwebdir.t
33.7stest-bundle.t
33.7stest-alias.t
33.2stest-histedit-fold.t
33.1stest-narrow-widen-no-ellipsis.t#tree
33.0stest-largefiles-wireproto.t#sshv2
33.0stest-ssh.t#sshv1
32.9stest-check-code.t
32.9stest-narrow-widen-no-ellipsis.t#flat
32.8stest-largefiles-wireproto.t#sshv1
32.8stest-ssh.t#sshv2
32.8stest-narrow-clone.t
32.7stest-narrow-widen.t#tree
32.4stest-narrow-widen.t#flat
32.1stest-archive.t
31.6stest-https.t
31.4stest-automv.t
31.4stest-rebase-abort.t#abortflag#continueflag
31.4stest-issue3084.t
31.3stest-rebase-abort.t#abortcommand#continueflag
31.2stest-subrepo-svn.t
31.1stest-newbranch.t
31.0stest-hghave.t
31.0stest-rebase-abort.t#abortflag#continuecommand
30.9stest-rebase-abort.t#abortcommand#continuecommand
30.8stest-fastannotate-hg.t
30.5stest-extension.t
30.2stest-ssh-bundle1.t#sshv1
30.1stest-mq-qpush-fail.t
30.1stest-merge-no-file-change.t
30.0stest-ssh-bundle1.t#sshv2
29.8stest-phases.t
29.7stest-obshistory.t
29.5stest-check-pyflakes.t
29.5stest-histedit-obsolete.t#abortcommand
29.5stest-eol.t
29.4stest-http-bad-server.t
29.4stest-histedit-obsolete.t#abortflag
29.4stest-fetch.t
29.4stest-narrow-share.t#flat
29.3stest-acl.t
29.0stest-remotefilelog-prefetch.t
29.0stest-narrow-share.t#tree
28.4stest-histedit-arguments.t#abortflag
28.1stest-histedit-arguments.t#abortcommand
28.0stest-setdiscovery.t
27.8stest-bheads.t
27.8stest-convert-git.t
27.4stest-convert-hg-sink.t
27.0stest-bookflow.t
26.9stest-convert-cvs-detectmerge.t
26.8stest-obsolete-distributed.t
26.6stest-absorb.t
26.1stest-patchbomb.t
26.1stest-convert-cvs.t
26.0stest-import-git.t
25.7stest-git-export.t
25.3stest-branch-change.t
25.3stest-mq-qnew.t
25.3stest-rebase-cache.t
25.2stest-split.t#obsstore-on
25.0stest-lfs-serve.t#lfsremote-on
24.9stest-merge1.t
24.9stest-upgrade-repo.t
24.6stest-narrow-shallow-merges.t
24.4stest-sparse.t
24.3stest-mq-qpush-exact.t
24.3stest-remove.t
24.1stest-amend.t#obsstore-on
24.1stest-audit-subrepo.t
24.1stest-treediscovery-legacy.t
24.1stest-unamend.t
24.0stest-walk.t
23.7stest-grep.t
23.7stest-amend.t#obsstore-off
23.6stest-bundle-r.t
23.6stest-rebase-dest.t
23.6stest-rebase-parameters.t
23.4stest-histedit-edit.t
23.4stest-hgweb-commands.t
23.3stest-split.t#obsstore-off
23.2stest-narrow-clone-stream.t#flat-fncache
23.1stest-debugcommands.t
23.0stest-http.t
22.9stest-narrow-clone-stream.t#flat-nofncache
22.9stest-narrow-clone-stream.t#tree
22.9stest-show-work.t
22.7stest-commandserver.t
22.6stest-parse-date.t
22.4stest-show-stack.t
22.4stest-clone-uncompressed.t#stream-bundle2
22.4stest-infinitepush-bundlestore.t
22.4stest-narrow-clone-nonlinear.t
22.4stest-rebase-newancestor.t
22.4stest-rollback.t
22.3stest-hgweb-symrev.t
22.1stest-convert-svn-sink.t
22.0stest-rename-merge1.t
21.8stest-obsmarkers-effectflag.t
21.7stest-ssh-proto-unbundle.t
21.6stest-narrow-clone-no-ellipsis.t
21.5stest-add.t
21.4stest-rebase-mq-skip.t#continuecommand
21.4stest-subrepo-recursion.t
21.3stest-copies-in-changeset.t#sidedata
21.0stest-rebase-mq-skip.t#continueflag
21.0stest-convert-cvs-synthetic.t
20.9stest-mq-qimport.t
20.8stest-bookmarks-merge.t
20.8stest-rebase-interruptions.t
20.8stest-push-http.t#bundle2
20.6stest-revset-legacy-lookup.t
20.6stest-push.t
20.2stest-status-color.t
20.1stest-push-http.t#bundle1

Timeline

test-contrib-perf.t (37.59s)test-check-code.t (32.92s)test-contrib-check-code.t (2.07s)test-contrib-check-commit.t (0.18s)test-imports-checker.t (0.98s)test-merge-combination.t (172.22s)test-obsolete-checkheads.t (16.66s)test-push-checkheads-unpushed-D4.t (7.42s)test-push-checkheads-unpushed-D5.t (7.59s)test-push-race.t#strict (54.39s)test-push-race.t#unrelated (54.03s)test-run-tests.t (52.24s)test-check-py3-compat.t (5.45s)test-push-checkheads-pruned-B8.t (8.31s)test-push-checkheads-superceed-A6.t (7.23s)test-push-checkheads-superceed-A7.t (7.31s)test-push-checkheads-unpushed-D3.t (7.33s)test-largefiles-update.t (69.42s)test-push-checkheads-pruned-B2.t (5.44s)test-push-checkheads-pruned-B5.t (6.44s)test-push-checkheads-superceed-A2.t (6.22s)test-push-checkheads-superceed-A3.t (5.98s)test-push-checkheads-unpushed-D2.t (6.20s)test-push-checkheads-unpushed-D7.t (7.56s)test-rebase-check-restore.t (7.30s)test-push-checkheads-partial-C1.t (4.98s)test-push-checkheads-partial-C2.t (4.95s)test-push-checkheads-partial-C4.t (4.77s)test-push-checkheads-pruned-B3.t (5.56s)test-push-checkheads-pruned-B4.t (5.30s)test-push-checkheads-superceed-A8.t (5.69s)test-push-checkheads-unpushed-D6.t (5.89s)test-push-checkheads-partial-C3.t (4.75s)test-push-checkheads-pruned-B6.t (5.63s)test-push-checkheads-pruned-B7.t (5.62s)test-push-checkheads-unpushed-D1.t (4.98s)test-subrepo-svn.t (31.22s)test-push-checkheads-superceed-A4.t (4.66s)test-push-checkheads-superceed-A5.t (4.39s)test-push-checkheads-pruned-B1.t (3.81s)test-push-checkheads-superceed-A1.t (3.76s)test-copytrace-heuristics.t (52.09s)test-check-config.t (13.41s)test-glog-beautifygraph.t (86.23s)test-gendoc-ja.t (4.57s)test-convert-cvs.t (26.06s)test-check-module-imports.t (1.50s)test-help.t (34.12s)test-obsolete-bounds-checking.t (1.08s)test-gendoc.t (6.26s)test-glog.t (85.56s)test-convert-svn-sink.t (22.09s)test-check-help.t (10.38s)test-patchbomb.t (26.09s)test-convert-svn-source.t (0.14s)test-obsolete-bundle-strip.t (116.48s)test-check-pyflakes.t (29.54s)test-abort-checkin.t (1.05s)test-http-bad-server.t (29.40s)test-ssh-proto-unbundle.t (21.69s)test-obsmarker-template.t (81.06s)test-acl.t (29.27s)test-check-commit.t (1.88s)test-check-shbang.t (2.32s)test-convert-svn-move.t (0.12s)test-check-interfaces.py (0.50s)test-hgweb-commands.t (23.38s)test-hgweb-symrev.t (22.27s)test-obsolete.t (106.43s)test-upgrade-repo.t (24.90s)test-extension.t (30.46s)test-ssh-proto.t (37.45s)test-log.t (99.38s)test-check-execute.t (1.63s)test-dirstate-race.t (17.26s)test-check-pylint.t (58.00s)test-graft.t#abortcommand (96.42s)test-graft.t#abortflag (96.71s)test-convert-svn-encoding.t (0.12s)test-wireproto-content-redirects.t (4.82s)test-hgweb-filelog.t (10.94s)test-hgwebdir.t (33.77s)test-wireproto-exchangev2.t (19.52s)test-bundle2-format.t (13.22s)test-template-map.t (43.93s)test-revset.t (131.54s)test-subrepo.t (110.89s)test-convert-cvs-detectmerge.t (26.86s)test-rebase-obsolete.t (85.66s)test-largefiles.t (103.59s)test-merge-tools.t (78.46s)test-hgweb-json.t (13.09s)test-convert-cvs-synthetic.t (20.98s)test-gendoc-ro.t (4.14s)test-import.t (84.96s)test-subrepo-deep-nested-change.t (40.71s)test-bundle2-exchange.t#sshv1 (73.01s)test-bundle2-exchange.t#sshv2 (73.48s)test-phases-exchange.t (59.53s)test-bookmarks-pushpull.t#b2-binary (113.08s)test-bookmarks-pushpull.t#b2-pushkey (112.79s)test-convert-cvsnt-mergepoints.t (12.94s)test-strip.t (63.46s)test-template-functions.t (97.75s)test-commit-interactive.t (35.22s)test-merge-changedelete.t (54.35s)test-lfs.t (55.58s)test-fix.t (71.62s)test-hook.t (36.65s)test-rename-merge2.t (65.62s)test-https.t (31.61s)test-highlight.t (14.03s)test-convert-git.t (27.77s)test-http-permissions.t (74.70s)test-lfs-test-server.t#git-server (0.28s)test-lfs-test-server.t#hg-server (13.74s)test-setdiscovery.t (28.00s)test-commandserver.t (22.67s)test-clone.t#sshv1 (53.21s)test-clone.t#sshv2 (53.05s)test-bookmarks.t (62.37s)test-check-clang-format.t (3.34s)test-merge-force.t (58.38s)test-revset2.t (65.25s)test-convert-cvs-branch.t (18.89s)test-shelve.t#phasebased (67.64s)test-shelve.t#stripbased (68.47s)test-largefiles-misc.t (90.64s)test-commit-amend.t (68.85s)test-branches.t (37.02s)test-http-protocol.t (14.82s)test-hgweb-diffs.t (14.08s)test-keyword.t (57.92s)test-revert.t (52.00s)test-template-keywords.t (54.29s)test-wireproto-command-filesdata.t (10.08s)test-convert-svn-branches.t (0.13s)test-mq.t (89.95s)test-convert-hg-svn.t (0.13s)test-gendoc-de.t (4.52s)test-lfs-serve-access.t (14.27s)test-wireproto-command-capabilities.t (4.61s)test-generaldelta.t (15.98s)test-subrepo-git.t (61.56s)test-lfs-serve.t#lfsremote-off (8.45s)test-lfs-serve.t#lfsremote-on (24.98s)test-transplant.t#commandmode (51.66s)test-transplant.t#continueflag (52.10s)test-treemanifest.t (39.03s)test-tags.t (44.21s)test-phases.t (29.83s)test-template-basic.t (56.26s)test-tag.t (40.50s)test-subrepo-recursion.t (21.37s)test-hgweb.t (17.13s)test-convert.t (9.61s)test-check-jshint.t (0.32s)test-http-api-httpv2.t (9.46s)test-http.t (23.03s)test-convert-filemap.t (48.83s)test-obsolete-divergent.t (54.77s)test-annotate.t (52.07s)test-bundle.t (33.71s)test-resolve.t (45.08s)test-shelve2.t#phasebased#abortcommand#continuecommand (61.56s)test-shelve2.t#phasebased#abortcommand#continueflag (61.04s)test-shelve2.t#phasebased#abortflag#continuecommand (61.04s)test-shelve2.t#phasebased#abortflag#continueflag (61.02s)test-shelve2.t#stripbased#abortcommand#continuecommand (59.62s)test-shelve2.t#stripbased#abortcommand#continueflag (59.37s)test-shelve2.t#stripbased#abortflag#continuecommand (59.66s)test-shelve2.t#stripbased#abortflag#continueflag (59.38s)test-split.t#obsstore-off (23.32s)test-split.t#obsstore-on (25.16s)test-notify.t (12.08s)test-encoding-textwrap.t (2.88s)test-obsolete-distributed.t (26.84s)test-walk.t (24.01s)test-mv-cp-st-diff.t (53.76s)test-bisect.t (48.36s)test-convert-p4-filetypes.t (0.11s)test-rebase-scenario-global.t (41.53s)test-commit.t (35.31s)test-ssh.t#sshv1 (32.95s)test-ssh.t#sshv2 (32.79s)test-bundle2-remote-changegroup.t#sshv1 (19.88s)test-bundle2-remote-changegroup.t#sshv2 (19.94s)test-clonebundles.t (19.53s)test-wireproto-exchangev2-shallow.t (6.14s)test-import-git.t (25.99s)test-mq-header-from.t (48.67s)test-i18n.t (4.51s)test-treediscovery.t (38.06s)test-bisect2.t (34.14s)test-archive.t (32.15s)test-fileset.t (46.51s)test-grep.t (23.70s)test-push-warn.t (56.53s)test-hgweb-annotate-whitespace.t (5.48s)test-remotefilelog-repack.t (39.52s)test-debugcommands.t (23.12s)test-remove.t (24.32s)test-rebase-inmemory.t (44.46s)test-clone-uncompressed.t#stream-bundle2 (22.41s)test-clone-uncompressed.t#stream-legacy (19.41s)test-alias.t (33.68s)test-ssh-bundle1.t#sshv1 (30.21s)test-ssh-bundle1.t#sshv2 (30.02s)test-mq-header-date.t (49.98s)test-wireproto-command-changesetdata.t (11.40s)test-pull-pull-corruption.t (15.58s)test-blackbox.t (14.11s)test-convert-svn-startrev.t (0.12s)test-devel-warnings.t (5.76s)test-backout.t (39.36s)test-push-http.t#bundle1 (20.05s)test-push-http.t#bundle2 (20.78s)test-check-format.t (0.48s)test-rebase-collapse.t (34.60s)test-contrib-relnotes.t (1.46s)test-update-branches.t (67.85s)test-audit-subrepo.t (24.13s)test-histedit-obsolete.t#abortcommand (29.49s)test-histedit-obsolete.t#abortflag (29.37s)test-histedit-arguments.t#abortcommand (28.13s)test-histedit-arguments.t#abortflag (28.38s)test-wireproto.t (10.84s)test-globalopts.t (12.55s)test-http-bundle1.t (19.94s)test-hgweb-descend-empties.t (2.50s)test-obshistory.t (29.68s)test-fncache.t (12.76s)test-rename.t (34.49s)test-uncommit.t (43.28s)test-mq-subrepo.t (54.44s)test-fastannotate-hg.t (30.75s)test-histedit-fold.t (33.22s)test-progress.t (5.09s)test-remotefilelog-repack-fast.t (35.18s)test-log-linerange.t (9.86s)test-extdiff.t (19.08s)test-getbundle.t (6.42s)test-largefiles-wireproto.t#sshv1 (32.83s)test-largefiles-wireproto.t#sshv2 (32.99s)test-status-color.t (20.24s)test-narrow.t#flat#lfs-off (46.32s)test-narrow.t#flat#lfs-on (53.74s)test-narrow.t#tree#lfs-off (46.74s)test-narrow.t#tree#lfs-on (53.60s)test-convert-hg-sink.t (27.35s)test-logexchange.t (18.06s)test-merge-types.t (14.22s)test-histedit-commute.t (16.05s)test-censor.t (36.66s)test-lfconvert.t (18.81s)test-histedit-edit.t (23.40s)test-remotefilelog-bgprefetch.t (33.96s)test-fetch.t (29.36s)test-copies.t#changeset (61.76s)test-copies.t#compatibility (62.11s)test-copies.t#filelog (61.93s)test-copies.t#sidedata (62.18s)test-wireproto-caching.t (6.45s)test-amend.t#obsstore-off (23.66s)test-amend.t#obsstore-on (24.14s)test-incoming-outgoing.t (15.09s)test-clone-pull-corruption.t (8.15s)test-eol.t (29.46s)test-rollback.t (22.35s)test-install.t (3.87s)test-newbranch.t (31.14s)test-bundle2-multiple-changegroups.t (8.12s)test-merge-criss-cross.t (16.83s)test-wireproto-command-manifestdata.t (6.82s)test-git-export.t (25.74s)test-infinitepush-ci.t (14.65s)test-status.t (33.88s)test-diff-color.t (7.83s)test-rebase-abort.t#abortcommand#continuecommand (30.91s)test-rebase-abort.t#abortcommand#continueflag (31.34s)test-rebase-abort.t#abortflag#continuecommand (31.00s)test-rebase-abort.t#abortflag#continueflag (31.45s)test-lfs-largefiles.t (15.49s)test-dirstate-race2.t (2.04s)test-hgweb-empty.t (2.22s)test-merge1.t (24.94s)test-infinitepush-bundlestore.t (22.40s)test-rebase-conflicts.t (15.02s)test-push.t (20.58s)test-rebase-newancestor.t (22.37s)test-convert-mtn.t (0.10s)test-copies-in-changeset.t#extra (19.07s)test-copies-in-changeset.t#sidedata (21.31s)test-narrow-shallow-merges.t (24.57s)test-mq-guards.t (37.85s)test-hghave.t (31.03s)test-convert-svn-tags.t (0.13s)test-pager.t (13.92s)test-completion.t (6.58s)test-wireproto-command-filedata.t (8.58s)test-qrecord.t (6.92s)test-mq-subrepo-svn.t (2.57s)test-revset-legacy-lookup.t (20.64s)test-copies-unrelated.t#changeset (38.92s)test-copies-unrelated.t#compatibility (38.68s)test-copies-unrelated.t#filelog (38.83s)test-copies-unrelated.t#sidedata (38.70s)test-rebase-interruptions.t (20.82s)test-absorb.t (26.61s)test-rebase-parameters.t (23.59s)test-hardlinks.t (15.52s)test-export.t (13.67s)test-issue3084.t (31.44s)test-merge-no-file-change.t (30.05s)test-verify.t (9.63s)test-narrow-patterns.t (18.49s)test-rebase-dest.t (23.59s)test-mq-qpush-fail.t (30.10s)test-narrow-widen-no-ellipsis.t#flat (32.88s)test-narrow-widen-no-ellipsis.t#tree (33.12s)test-bundle-r.t (23.62s)test-rebase-pull.t (19.85s)test-exchange-obsmarkers-case-A1.t (18.88s)test-branch-change.t (25.34s)test-sparse.t (24.44s)test-commit-interactive-curses.t (15.85s)test-rebase-named-branches.t (18.54s)test-fix-topology.t#obsstore-off (13.09s)test-fix-topology.t#obsstore-on (15.15s)test-import-bypass.t (19.13s)test-revert-interactive.t (14.00s)test-parse-date.t (22.65s)test-treediscovery-legacy.t (24.10s)test-narrow-widen.t#flat (32.39s)test-narrow-widen.t#tree (32.73s)test-rebase-cache.t (25.30s)test-journal.t (7.93s)test-help-hide.t (0.51s)test-releasenotes-formatting.t (13.50s)test-mq-qrefresh.t (19.59s)test-histedit-fold-non-commute.t (16.93s)test-gendoc-pt_BR.t (4.80s)test-gendoc-zh_CN.t (4.53s)test-gendoc-zh_TW.t (4.54s)test-exchange-obsmarkers-case-A3.t (19.85s)test-mq-qrefresh-interactive.t (4.47s)test-chg.t (0.10s)test-wireproto-command-rawstorefiledata.t (3.77s)test-static-http.t (12.64s)test-histedit-non-commute.t (16.36s)test-hgignore.t (11.68s)test-githelp.t (17.57s)test-win32text.t (11.85s)test-exchange-obsmarkers-case-C3.t (12.67s)test-gendoc-it.t (4.47s)test-gendoc-el.t (4.54s)test-gendoc-fr.t (4.47s)test-gendoc-ru.t (4.70s)test-gendoc-sv.t (4.50s)test-gendoc-da.t (4.54s)test-share-bookmarks.t#svfs (14.37s)test-share-bookmarks.t#vfs (14.29s)test-mq-qnew.t (25.32s)test-bheads.t (27.84s)test-flagprocessor.t (19.45s)test-diff-ignore-whitespace.t (15.87s)test-bookflow.t (26.98s)test-config.t (12.40s)test-http-api.t (4.32s)test-largefiles-cache.t (16.93s)test-encoding.t (7.53s)test-rebase-rename.t (18.10s)test-convert-bzr-merges.t (0.10s)test-mq-qimport.t (20.88s)test-manifest.t (13.75s)test-url-rev.t (15.24s)test-diff-unified.t (10.28s)test-mq-qrefresh-replace-log-message.t (14.30s)test-unamend.t (24.05s)test-init.t (40.95s)test-pager-legacy.t (9.85s)test-rebase-base-flag.t (16.16s)test-histedit-base.t (8.46s)test-parseindex.t (5.04s)test-clone-r.t (13.50s)test-bad-extension.t (2.12s)test-hgweb-raw.t (4.66s)test-rebase-mq.t (19.16s)test-exchange-obsmarkers-case-D1.t (12.20s)test-hgweb-removed.t (2.31s)test-eol-patch.t (7.76s)test-automv.t (31.45s)test-exchange-obsmarkers-case-C2.t (11.63s)test-single-head.t (14.13s)test-ssh-clone-r.t#sshv1 (13.21s)test-ssh-clone-r.t#sshv2 (13.28s)test-subrepo-relative-path.t (11.48s)test-hgrc.t (6.66s)test-casecollision-merge.t (0.11s)test-http-clone-r.t (12.17s)test-convert-bzr.t (0.11s)test-bookmarks-corner-case.t (8.92s)test-rename-dir-merge.t (14.37s)test-strip-cross.t (19.58s)test-add.t (21.51s)test-histedit-no-change.t (12.17s)test-narrow-clone.t (32.75s)test-diffstat.t (14.11s)test-convert-splicemap.t (11.85s)test-http-proxy.t (4.95s)test-removeemptydirs.t (13.19s)test-fileset-generated.t (7.38s)test-bundle-phases.t (17.51s)test-exchange-obsmarkers-case-C1.t (11.04s)test-status-rev.t (6.77s)test-diff-upgrade.t (5.14s)test-pull-update.t (14.20s)test-copy.t (15.94s)test-bisect3.t (9.77s)test-conflict.t (8.31s)test-remotefilelog-prefetch.t (29.04s)test-up-local-change.t (13.62s)test-dispatch.t (10.89s)test-narrow-exchange.t#lfs-off (11.35s)test-narrow-exchange.t#lfs-on (12.89s)test-obsolete-changeset-exchange.t (8.58s)test-exchange-obsmarkers-case-D4.t (9.73s)test-eol-update.t (6.98s)test-remotefilelog-push-pull.t (18.94s)test-pull-bundle.t (9.32s)test-share.t (10.61s)test-narrow-exchange-merges.t (11.48s)test-absorb-rename.t (14.57s)test-exchange-obsmarkers-case-B5.t (11.25s)test-churn.t (10.45s)test-pull-branch.t (13.76s)test-eol-hook.t (9.35s)test-bundle-type.t (15.86s)test-remotefilelog-linknodes.t (16.63s)test-narrow-trackedcmd.t#flat (10.41s)test-narrow-trackedcmd.t#tree (10.57s)test-byteify-strings.t (0.91s)test-rebase-detach.t (14.61s)test-stream-bundle-v2.t (4.32s)test-sparse-profiles.t (11.01s)test-mq-qpush-exact.t (24.34s)test-fastannotate-protocol.t (9.87s)test-hybridencode.py (0.31s)test-rebase-bookmarks.t (16.64s)test-bookmarks-current.t (16.95s)test-convert-hg-source.t (13.86s)test-notify-changegroup.t (5.29s)test-encoding-align.t (5.96s)test-debugbuilddag.t (6.50s)test-convert-baz.t (0.11s)test-inherit-mode.t (2.24s)test-infinitepush.t (16.50s)test-histedit-non-commute-abort.t (8.30s)test-releasenotes-merging.t (6.79s)test-remotefilelog-gcrepack.t (10.32s)test-convert-hg-startrev.t (10.48s)test-show-work.t (22.85s)test-narrow-strip.t#flat#lfs-off (7.84s)test-narrow-strip.t#flat#lfs-on (8.91s)test-narrow-strip.t#tree#lfs-off (7.82s)test-narrow-strip.t#tree#lfs-on (8.95s)test-repo-compengines.t (10.33s)test-merge-commit.t (8.23s)test-audit-path.t (14.08s)test-exchange-obsmarkers-case-B4.t (11.79s)test-fastannotate.t (12.67s)test-narrow-expanddirstate.t (6.28s)test-purge.t (11.73s)test-symlinks.t (13.09s)test-exchange-obsmarkers-case-C4.t (9.96s)test-sparse-revlog.t (0.10s)test-mq-safety.t (14.87s)test-directaccess.t (9.79s)test-exchange-obsmarkers-case-A6.t (10.73s)test-exchange-obsmarkers-case-A5.t (9.72s)test-remotefilelog-local.t (18.51s)test-basic.t (7.24s)test-narrow-share.t#flat (29.35s)test-narrow-share.t#tree (28.96s)test-hgweb-csp.t (6.77s)test-histedit-bookmark-motion.t (7.34s)test-obsolete-tag-cache.t (5.21s)test-diff-binary-file.t (6.92s)test-casefolding.t (0.12s)test-mq-git.t (7.00s)test-mq-qfold.t (11.21s)test-remotefilelog-cacheprocess.t (4.50s)test-patchbomb-bookmark.t (4.01s)test-stack.t (13.59s)test-journal-share.t (6.88s)test-paths.t (14.19s)test-contrib-testparseutil.t (0.36s)test-hgweb-no-request-uri.t (1.53s)test-sparse-merges.t (11.76s)test-pathconflicts-merge.t (12.14s)test-releasenotes-parsing.t (2.67s)test-diff-indent-heuristic.t#bdiff (0.82s)test-diff-indent-heuristic.t#xdiff (1.11s)test-import-merge.t (12.74s)test-drawdag.t (9.43s)test-patchbomb-tls.t (4.21s)test-exchange-obsmarkers-case-B2.t (9.34s)test-convert-p4.t (0.10s)test-show-stack.t (22.44s)test-narrow-clone-nonlinear.t (22.38s)test-mq-eol.t (6.61s)test-exchange-obsmarkers-case-A4.t (8.04s)test-convert-bzr-directories.t (0.11s)test-obsmarkers-effectflag.t (21.84s)test-rename-merge1.t (21.98s)test-fastannotate-renames.t (9.86s)test-histedit-drop.t (6.44s)test-rebase-mq-skip.t#continuecommand (21.42s)test-rebase-mq-skip.t#continueflag (21.04s)test-bookmarks-merge.t (20.84s)test-lock-badness.t (10.20s)test-repair-strip.t (5.88s)test-histedit-outgoing.t (8.74s)test-pull.t#sshv1 (7.56s)test-pull.t#sshv2 (7.49s)test-exchange-obsmarkers-case-B6.t (8.53s)test-merge-default.t (8.52s)test-extension-timing.t (0.87s)test-match.py (0.27s)test-rebase-emptycommit.t (8.84s)test-cbor.py (0.87s)test-debugbundle.t (3.15s)test-copy-move-merge.t (18.81s)test-profile.t (18.10s)test-convert-tla.t (1.25s)test-mq-qclone-http.t (16.65s)test-exchange-obsmarkers-case-A2.t (15.91s)test-exchange-obsmarkers-case-D2.t (15.66s)test-status-terse.t (15.56s)test-merge7.t (4.15s)test-phase-archived.t (4.64s)test-hgweb-no-path-info.t (1.38s)test-subrepo-missing.t (14.12s)test-pathconflicts-update.t (13.49s)test-show.t (13.47s)test-addremove-similar.t (13.49s)test-contrib.t (1.82s)test-unionrepo.t (12.90s)test-flags.t (12.75s)test-remotefilelog-gc.t (12.57s)test-commit-multiple.t (12.41s)test-commit-unresolved.t#abortcommand (12.33s)test-commit-unresolved.t#abortflag (11.84s)test-import-eol.t (11.71s)test-logtoprocess.t (11.65s)test-mq-missingfiles.t (11.76s)test-sparse-import.t (11.55s)test-rebase-transaction.t#continuecommand (11.73s)test-rebase-transaction.t#continueflag (11.68s)test-identify.t (11.31s)test-default-push.t (10.78s)test-merge-subrepos.t (10.35s)test-narrow-clone-no-ellipsis.t (21.55s)test-filebranch.t (10.30s)test-mq-qdelete.t (14.60s)test-convert-datesort.t (8.56s)test-mq-merge.t (9.51s)test-pull-r.t (8.36s)test-sidedata.t (4.44s)test-update-atomic.t (3.83s)test-clone-update-order.t (5.95s)test-fastannotate-perfhack.t (9.41s)test-pending.t (7.40s)test-origbackup-conflict.t (5.82s)test-merge-local.t (7.01s)test-narrow-pull.t (18.77s)test-remotefilelog-http.t (6.47s)test-bugzilla.t (2.51s)test-exchange-obsmarkers-case-D3.t (8.95s)test-narrow-shallow.t (19.31s)test-remote-hidden.t (6.18s)test-branch-option.t (10.03s)test-mac-packages.t (0.17s)test-merge-halt.t (6.55s)test-worker.t (2.56s)test-empty-group.t (5.19s)test-parents.t (6.68s)test-fix-metadata.t (0.80s)test-http-branchmap.t (4.47s)test-children.t (6.76s)test-diff-change.t (7.74s)test-extdata.t (7.55s)test-bundle2-pushback.t#sshv1 (4.14s)test-bundle2-pushback.t#sshv2 (4.24s)test-rebuildstate.t (6.85s)test-narrow-merge.t#flat (8.63s)test-narrow-merge.t#tree (8.60s)test-exchange-obsmarkers-case-B3.t (8.07s)test-mq-pull-from-bundle.t (8.07s)test-remotefilelog-corrupt-cache.t (5.51s)test-amend-subrepo.t#obsstore-off (8.95s)test-amend-subrepo.t#obsstore-on (8.71s)test-merge-internal-tools-pattern.t (5.55s)test-run-tests.py (0.23s)test-issue672.t (3.65s)test-extensions-afterloaded.t (5.09s)test-tools.t (1.22s)test-fastannotate-corrupt.t (4.53s)test-narrow-commit.t#flat (9.54s)test-narrow-commit.t#tree (9.56s)test-eol-clone.t (3.10s)test-wireproto-serverreactor.py (0.33s)test-excessive-merge.t (4.94s)test-relink.t (3.33s)test-mq-qqueue.t (11.42s)test-narrow-rebase.t#continuecommand (8.00s)test-narrow-rebase.t#continueflag (8.30s)test-push-cgi.t (2.05s)test-record.t (1.35s)test-convert-darcs.t (1.58s)test-remotefilelog-clone-tree.t (5.12s)test-patch.t (4.09s)test-hgweb-non-interactive.t (1.13s)test-sqlitestore.t (2.57s)test-remotefilelog-clone.t (5.14s)test-arbitraryfilectx.t (2.49s)test-remotefilelog-sparse.t (13.46s)test-cache-abuse.t (16.11s)test-rebase-backup.t (5.96s)test-simple-update.t (7.19s)test-pathconflicts-basic.t (6.85s)test-committer.t (4.81s)test-exchange-obsmarkers-case-B7.t (7.75s)test-pull-http.t (4.45s)test-remotefilelog-bundle2-legacy.t (0.72s)test-exchange-obsmarkers-case-B1.t (7.71s)test-remotefilelog-log.t (6.34s)test-mq-qdiff.t (6.99s)test-bookmarks-rebase.t (5.85s)test-serve.t (6.59s)test-exchange-obsmarkers-case-A7.t (6.81s)test-revset-outgoing.t (4.92s)test-import-context.t (2.12s)test-remotefilelog-bundle2.t (7.13s)test-eol-add.t (3.64s)test-bundle-vs-outgoing.t (5.06s)test-rebase-partial.t (4.93s)test-update-names.t (6.74s)test-mailmap.t (4.32s)test-remotefilelog-bundles.t (5.84s)test-merge-remove.t (6.52s)test-convert-tagsbranch-topology.t (1.56s)test-requires.t (3.61s)test-locate.t (9.44s)test-merge-closedheads.t (8.53s)test-rename-after-merge.t (6.91s)test-wireproto-clientreactor.py (0.32s)test-contrib-dumprevlog.t (3.78s)test-remotefilelog-pull-noshallow.t (4.10s)test-debugextensions.t (1.58s)test-narrow-clone-stream.t#flat-fncache (23.18s)test-narrow-clone-stream.t#flat-nofncache (22.88s)test-narrow-clone-stream.t#tree (22.88s)test-rebase-legacy.t#continuecommand (1.69s)test-rebase-legacy.t#continueflag (1.46s)test-issue1306.t (3.42s)test-lfs-bundle.t (6.51s)test-issue1175.t (6.49s)test-cat.t (8.61s)test-nointerrupt.t (4.81s)test-issue660.t (7.08s)test-largefiles-small-disk.t (1.86s)test-convert-clonebranches.t (5.79s)test-oldcgi.t (1.66s)test-impexp-branch.t (4.92s)test-narrow-clone-non-narrow-server.t (9.50s)test-histedit-no-backup.t#abortcommand (2.92s)test-histedit-no-backup.t#abortflag (3.00s)test-issue586.t (6.13s)test-unified-test.t (0.87s)test-rebase-templates.t (3.92s)test-remotefilelog-tags.t (4.85s)test-symlink-placeholder.t (3.61s)test-merge6.t (4.63s)test-narrow-copies.t (6.61s)test-server-view.t (4.80s)test-rebase-issue-noparam-single-rev.t (6.20s)test-dirstate.t (4.30s)test-close-head.t (5.09s)test-url-download.t (4.93s)test-merge-revert2.t (8.82s)test-verify-repo-operations.py (0.14s)test-addremove.t (6.23s)test-mq-qrename.t (11.10s)test-narrow-update.t (6.32s)test-mq-symlinks.t (9.00s)test-ssh-repoerror.t (5.24s)test-wsgirequest.py (0.40s)test-double-merge.t (2.38s)test-narrow-patch.t#flat (3.08s)test-narrow-patch.t#tree (3.15s)test-glog-topological.t (2.43s)test-sparse-verbose-json.t (3.77s)test-merge9.t (4.87s)test-context-metadata.t (2.89s)test-patch-offset.t (0.85s)test-log-exthook.t (1.32s)test-newcgi.t (1.22s)test-issue1802.t (3.83s)test-update-reverse.t (3.32s)test-wireproto-command-branchmap.t (3.43s)test-pushvars.t (3.03s)test-histedit-templates.t (2.66s)test-hgwebdirsym.t (4.20s)test-manifest.py (2.68s)test-revlog-raw.py (0.73s)test-merge-symlinks.t (1.99s)test-branch-tag-confict.t (2.62s)test-narrow-debugcommands.t (3.25s)test-custom-filters.t (2.28s)test-sparse-clone.t (2.13s)test-issue2137.t (1.09s)test-remotefilelog-partial-shallow.t (3.82s)test-eolfilename.t (3.00s)test-merge10.t (3.78s)test-journal-exists.t (2.90s)test-revlog-v2.t (2.21s)test-diffdir.t (5.31s)test-schemes.t (3.19s)test-issue522.t (3.11s)test-histedit-merge-tools.t (2.40s)test-mq-qgoto.t (7.42s)test-revlog.t (1.87s)test-newercgi.t (1.22s)test-url.py (0.27s)test-editor-filename.t (1.84s)test-import-unknown.t (5.83s)test-unbundlehash.t (2.20s)test-narrow-sparse.t#flat (3.58s)test-narrow-sparse.t#tree (3.66s)test-wireproto-command-known.t (2.52s)test-missing-capability.t (2.99s)test-wireproto-command-listkeys.t (3.02s)test-convert-identity.t (3.48s)test-merge-revert.t (8.90s)test-encode.t (3.62s)test-wireproto-command-heads.t (2.75s)test-permissions.t (2.74s)test-casecollision.t (5.58s)test-ancestor.py (1.09s)test-update-dest.t (2.87s)test-known.t (4.29s)test-sparse-fsmonitor.t (0.02s)test-no-symlinks.t (0.10s)test-remotefilelog-datapack.py (1.83s)test-convert-authormap.t (1.89s)test-subrepo-paths.t (1.89s)test-sparse-requirement.t (1.90s)test-confused-revert.t (4.74s)test-remotefilelog-permissions.t (4.52s)test-fuzz-targets.t (0.39s)test-issue1993.t (2.40s)test-issue1502.t (3.04s)test-clone-cgi.t (1.15s)test-sparse-clear.t (2.77s)test-simplemerge.py (0.24s)test-websub.t (1.80s)test-rebase-brute-force.t (2.50s)test-revlog-mmapindex.t (18.69s)test-merge2.t (5.76s)test-diff-antipatience.t#bdiff (0.88s)test-diff-antipatience.t#xdiff (1.15s)test-issue1877.t (4.09s)test-gpg.t (2.40s)test-empty-file.t (3.36s)test-lrucachedict.py (0.24s)test-hgk.t (2.39s)test-changelog-exec.t (2.98s)test-diff-hashes.t (2.40s)test-debian-packages.t (0.37s)test-absorb-edit-lines.t (2.74s)test-remotefilelog-wireproto.t (4.08s)test-mactext.t (1.34s)test-convert-bzr-ghosts.t (0.10s)test-docker-packaging.t (0.28s)test-bookmarks-strip.t (3.29s)test-narrow-acl.t (3.55s)test-remotefilelog-keepset.t (3.11s)test-lock.py (0.26s)test-remotefilelog-histpack.py (3.90s)test-diff-subdir.t (2.09s)test-remotefilelog-bad-configs.t (3.06s)test-convert-bzr-114.t (0.11s)test-trusted.py (0.33s)test-narrow-debugrebuilddirstate.t (2.36s)test-unrelated-pull.t (2.39s)test-parseindex2.py (0.43s)test-diff-reverse.t (2.59s)test-revset-dirstate-parents.t (5.50s)test-wireproto-command-pushkey.t (1.96s)test-update-issue1456.t (3.49s)test-empty.t (1.77s)test-merge5.t (3.11s)test-wireproto-framing.py (0.25s)test-narrow-archive.t (3.49s)test-diff-copy-depth.t (4.95s)test-convert-bzr-treeroot.t (0.11s)test-hgweb-bundle.t (2.14s)test-absorb-unfinished.t (1.66s)test-mq-qimport-fail-cleanup.t (1.91s)test-linerange.py (0.24s)test-fix-clang-format.t (1.56s)test-manifest-merging.t (2.22s)test-issue619.t (2.31s)test-merge8.t (2.39s)test-issue842.t (2.41s)test-remotefilelog-blame.t (4.10s)test-linelog.py (3.25s)test-filecache.py (1.20s)test-revlog-group-emptyiter.t (1.67s)test-propertycache.py (0.66s)test-demandimport.py (0.44s)test-pathencode.py (0.61s)test-archive-symlinks.t (1.64s)test-absorb-strip.t (1.51s)test-pull-permission.t (1.48s)test-issue5979.t (3.05s)test-revisions.t (4.28s)test-rust-ancestor.py (0.20s)test-merge4.t (2.63s)test-absorb-filefixupstate.py (0.44s)test-wireproto-command-lookup.t (1.67s)test-phabricator.t (0.49s)test-context.py (0.51s)test-issue612.t (2.49s)test-debugindexdot.t (2.68s)test-eol-tag.t (1.77s)test-batching.py (0.36s)test-bdiff.py (0.24s)test-hgweb-auth.py (0.22s)test-nested-repo.t (3.11s)test-minirst.py (0.28s)test-execute-bit.t (2.79s)test-username-newline.t (1.12s)test-fastannotate-revmap.py (0.42s)test-issue4074.t (2.25s)test-remotefilelog-share.t (2.58s)test-revlog-packentry.t (1.34s)test-dirstate-nonnormalset.t (2.08s)test-ui-config.py (0.47s)test-diff-issue2761.t (2.35s)test-atomictempfile.py (0.25s)test-strict.t (2.08s)test-util.py (0.24s)test-diff-newlines.t (1.16s)test-rust-discovery.py (0.20s)test-empty-dir.t (1.69s)test-storage.py (3.09s)test-absorb-phase.t (2.03s)test-annotate.py (0.28s)test-extra-filelog-entry.t (1.51s)test-debugrename.t (2.20s)test-issue1438.t (2.51s)test-issue1102.t (2.15s)test-fastannotate-diffopts.t (1.19s)test-revert-unknown.t (2.02s)test-bad-pull.t (1.63s)test-revert-flags.t (1.80s)test-simplekeyvaluefile.py (0.21s)test-issue1089.t (1.79s)test-doctest.py (1.06s)test-backwards-remove.t (1.49s)test-wireproto.py (0.34s)test-contrib-emacs.t (0.94s)test-cappedreader.py (0.35s)test-xdg.t (0.32s)test-dirstate-backup.t (0.51s)test-mq-qsave.t (1.27s)test-encoding-func.py (0.21s)test-extensions-wrapfunction.py (0.33s)test-revlog-ancestry.py (0.69s)test-walkrepo.py (0.40s)test-ui-verbosity.py (0.40s)test-filelog.py (0.41s)test-sshserver.py (0.34s)test-hg-parseurl.py (0.38s)test-symlink-os-yes-fs-no.py (1.46s)test-minifileset.py (0.29s)test-config-env.py (0.30s)test-lfs-pointer.py (0.32s)test-duplicateoptions.py (0.57s)test-hgwebdir-paths.py (0.47s)test-ui-color.py (0.43s)test-status-inprocess.py (0.44s)test-dispatch.py (0.44s)test-mdiff.py (0.31s)