Job try-1cb7facd85b47da76154fa71d09576a2e89aa6a4-windows-cpython-3.7-x64-0

Repo:try
Node:1cb7facd85b47da76154fa71d09576a2e89aa6a4
Name:windows-cpython-3.7-x64
Scheduled At:2019-10-17T04:32:02
Started At:2019-10-17T04:32:10
Finished At:2019-10-17T05:15:27

Failed Tests

test-alias.t

UnicodeDecodeError('unicodeescape', b'--- c:/hgdev/src/tests/test-alias.t\n+++ c:/hgdev/src/tests/test-alias.t.err\n@@ -86,10 +86,11 @@\n   \n   This is my documented alias for init.\n   \n-  defined by: * (glob)\n-  */* (glob) (?)\n-  */* (glob) (?)\n-  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  defined by:\n+  C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\child206\\.hgrc:22\n   \n   options:\n   \n@@ -107,10 +108,11 @@\n   \n   This is my alias with only doc.\n   \n-  defined by: * (glob)\n-  */* (glob) (?)\n-  */* (glob) (?)\n-  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  defined by:\n+  C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\child206\\.hgrc:25\n   \n   options ([+] can be repeated):\n   \n@@ -171,10 +173,11 @@\n   \n       Returns 0 on success.\n   \n-  defined by: * (glob)\n-  */* (glob) (?)\n-  */* (glob) (?)\n-  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  */* (glob) (?)\n+  defined by:\n+  C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\child206\\.hgrc:28\n   \n   options ([+] can be repeated):\n   \n', 297, 299, 'truncated \\UXXXXXXXX escape') decoding diff, sorry

test-arbitraryfilectx.t

--- c:/hgdev/src/tests/test-arbitraryfilectx.t
+++ c:/hgdev/src/tests/test-arbitraryfilectx.t.err
@@ -88,7 +88,7 @@
 This comparison should also return False, since A and sym_A are substantially
 the same in the eyes of ``filectx.cmp``, which looks at data only.
   $ hg eval "context.arbitraryfilectx(b'real_A', repo).cmp(repo[None][b'sym_A'])"
-  False (no-eol)
+  True (no-eol)
 
 A naive use of filecmp on those two would wrongly return True, since it follows
 the symlink to "A", which has different contents.

test-archive-symlinks.t

--- c:/hgdev/src/tests/test-archive-symlinks.t
+++ c:/hgdev/src/tests/test-archive-symlinks.t.err
@@ -5,38 +5,69 @@
   $ hg init repo
   $ cd repo
   $ ln -s nothing dangling
+  ln: creating symbolic link `dangling' to `nothing': $ENOENT$
+  [1]
 
 avoid tar warnings about old timestamp
 
   $ hg ci -d '2000-01-01 00:00:00 +0000' -qAm 'add symlink'
+  [1]
 
   $ hg archive -t files ../archive
+  abort: no working directory: please specify a revision
+  [255]
   $ hg archive -t tar -p tar ../archive.tar
+  abort: no working directory: please specify a revision
+  [255]
   $ hg archive -t zip -p zip ../archive.zip
+  abort: no working directory: please specify a revision
+  [255]
 
 files
 
   $ cd "$origdir"
   $ cd archive
+  $TESTTMP.sh: line 22: cd: archive: $ENOENT$
+  [1]
   $ readlink.py dangling
-  dangling -> nothing
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'dangling'
 (esc)
+  [1]
 
 tar
 
   $ cd "$origdir"
   $ tar xf archive.tar
+  tar: archive.tar: Cannot open: $ENOENT$
+  tar: Error is not recoverable: exiting now
+  [2]
   $ cd tar
+  $TESTTMP.sh: line 30: cd: tar: $ENOENT$
+  [1]
   $ readlink.py dangling
-  dangling -> nothing
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'dangling'
 (esc)
+  [1]
 
 #if unziplinks
 zip
 
   $ cd "$origdir"
   $ unzip archive.zip > /dev/null 2>&1
+  [9]
   $ cd zip
+  $TESTTMP.sh: line 38: cd: zip: $ENOENT$
+  [1]
   $ readlink.py dangling
-  dangling -> nothing
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'dangling'
 (esc)
+  [1]
 #endif
 
   $ cd ..

test-audit-path.t

--- c:/hgdev/src/tests/test-audit-path.t
+++ c:/hgdev/src/tests/test-audit-path.t.err
@@ -21,15 +21,16 @@
   $ ln -s a b
   $ echo b > a/b
   $ hg add b/b
-  abort: path 'b/b' traverses symbolic link 'b'
-  [255]
+  b/b: $ENOENT$
+  [1]
   $ hg add b
+  adding b/a
 
 should still fail - maybe
 
   $ hg add b/b
-  abort: path 'b/b' traverses symbolic link 'b'
-  [255]
+  b/b: $ENOENT$
+  [1]
 
   $ hg commit -m 'add symlink b'
 
@@ -54,21 +55,18 @@
   $ hg cat -r "desc(directory)" b/a
   c
   $ hg cat -r "desc(symlink)" b/a
-  b/a: no such file in rev bc151a1f53bd
-  [1]
+  a
 
 Test that hg cat does not do anything wrong the working copy has 'b' as a symlink (issue4749)
 
   $ hg up 'desc(symlink)'
-  1 files updated, 0 files merged, 1 files removed, 0 files unresolved
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ hg cat b/a
-  b/a: no such file in rev bc151a1f53bd
-  [1]
+  a
   $ hg cat -r "desc(directory)" b/a
   c
   $ hg cat -r "desc(symlink)" b/a
-  b/a: no such file in rev bc151a1f53bd
-  [1]
+  a
 
 #endif
 
@@ -108,7 +106,7 @@
   back/test
 #if symlink
   $ hg update -Cr2
-  abort: path 'back/test' traverses symbolic link 'back'
+  abort: $TESTTMP	argetack/test: $ENOTDIR$
   [255]
 #else
 ('back' will be a file and cause some other system specific error)
@@ -153,15 +151,16 @@
   $ hg commit -qAm base
   $ ln -s ../merge-symlink-out a
   $ hg commit -qAm 'symlink a -> ../merge-symlink-out'
+  [1]
   $ hg up -q 0
   $ mkdir a
+  mkdir: cannot create directory `a': File exists
+  [1]
   $ touch a/poisoned
   $ hg commit -qAm 'file a/poisoned'
   $ hg log -G -T '{rev}: {desc}
'
-  @  2: file a/poisoned
+  @  1: file a/poisoned
   |
-  | o  1: symlink a -> ../merge-symlink-out
-  |/
   o  0: base
   
 
@@ -169,16 +168,17 @@
 
   $ hg up -qC 1
   $ hg merge 2
-  abort: path 'a/poisoned' traverses symbolic link 'a'
+  abort: unknown revision '2'!
   [255]
 
 try rebase onto other revision: cache of audited paths should be discarded,
 and the rebase should fail (issue5628)
 
   $ hg up -qC 2
+  abort: unknown revision '2'!
+  [255]
   $ hg rebase -s 2 -d 1 --config extensions.rebase=
-  rebasing 2:e73c21d6b244 "file a/poisoned" (tip)
-  abort: path 'a/poisoned' traverses symbolic link 'a'
+  abort: unknown revision '2'!
   [255]
   $ ls ../merge-symlink-out
 
@@ -192,26 +192,33 @@
   $ cd update-symlink
   $ ln -s ../update-symlink-out a
   $ hg commit -qAm 'symlink a -> ../update-symlink-out'
+  [1]
   $ hg rm a
+  not removing a: no tracked files
+  [1]
   $ mkdir a && touch a/b
+  mkdir: cannot create directory `a': File exists
+  [1]
   $ hg ci -qAm 'file a/b' a/b
+  a/b: $ENOENT$
+  abort: failed to mark all new/missing files as added/removed
+  [255]
   $ hg up -qC 0
   $ hg rm a
+  not removing a: no tracked files
+  [1]
   $ mkdir a && touch a/c
+  mkdir: cannot create directory `a': File exists
+  [1]
   $ hg ci -qAm 'rm a, file a/c'
+  [1]
   $ hg log -G -T '{rev}: {desc}
'
-  @  2: rm a, file a/c
-  |
-  | o  1: file a/b
-  |/
-  o  0: symlink a -> ../update-symlink-out
-  
 
 try linear update where symlink already exists:
 
   $ hg up -qC 0
   $ hg up 1
-  abort: path 'a/b' traverses symbolic link 'a'
+  abort: unknown revision '1'!
   [255]
 
 try linear update including symlinked directory and its content: paths are
@@ -220,7 +227,7 @@
 
   $ hg up -qC null
   $ hg up 1
-  abort: path 'a/b' traverses symbolic link 'a'
+  abort: unknown revision '1'!
   [255]
   $ ls ../update-symlink-out
 
@@ -229,9 +236,13 @@
 a symlink.
 
   $ rm -f a
+  rm: cannot remove directory `a': Is a directory
+  [1]
   $ hg up -qC 2
+  abort: unknown revision '2'!
+  [255]
   $ hg up 1
-  abort: path 'a/b' traverses symbolic link 'a'
+  abort: unknown revision '1'!
   [255]
   $ ls ../update-symlink-out
 

test-audit-subrepo.t

--- c:/hgdev/src/tests/test-audit-subrepo.t
+++ c:/hgdev/src/tests/test-audit-subrepo.t.err
@@ -413,12 +413,13 @@
   $ hg init hgsymdir/root
   $ cd hgsymdir/root
   $ ln -s ../out
+  ln: creating symbolic link `./out' to `../out': $ENOENT$
+  [1]
   $ hg ci -qAm 'add symlink "out"'
+  [1]
   $ hg init ../out
   $ echo 'out = out' >> .hgsub
   $ hg ci -qAm 'add subrepo "out"'
-  abort: subrepo 'out' traverses symbolic link
-  [255]
 
 prepare tampered repo (including the commit above):
 
@@ -436,14 +437,16 @@
   > @@ -0,0 +1,1 @@
   > +0000000000000000000000000000000000000000 out
   > EOF
+  file .hgsub already exists
+  file .hgsubstate already exists
+  abort: patch failed to apply
+  [255]
   $ cd ../..
 
 on clone (and update):
 
   $ mkdir hgsymdir2
   $ hg clone -q hgsymdir/root hgsymdir2/root
-  abort: subrepo 'out' traverses symbolic link
-  [255]
   $ ls hgsymdir2
   root
 
@@ -460,13 +463,14 @@
   $ hg init hgsymin/root
   $ cd hgsymin/root
   $ ln -s ../out
+  ln: creating symbolic link `./out' to `../out': $ENOENT$
+  [1]
   $ hg ci -qAm 'add symlink "out"'
+  [1]
   $ mkdir ../out
   $ hg init ../out/sub
   $ echo 'out/sub = out/sub' >> .hgsub
   $ hg ci -qAm 'add subrepo "out/sub"'
-  abort: path 'out/sub' traverses symbolic link 'out'
-  [255]
 
 prepare tampered repo (including the commit above):
 
@@ -484,14 +488,16 @@
   > @@ -0,0 +1,1 @@
   > +0000000000000000000000000000000000000000 out/sub
   > EOF
+  file .hgsub already exists
+  file .hgsubstate already exists
+  abort: patch failed to apply
+  [255]
   $ cd ../..
 
 on clone (and update):
 
   $ mkdir hgsymin2
   $ hg clone -q hgsymin/root hgsymin2/root
-  abort: path 'out/sub' traverses symbolic link 'out'
-  [255]
   $ ls hgsymin2
   root
 
@@ -512,6 +518,7 @@
   $ cd main
   $ ln -s "`echo "$FAKEHOME" | sed 's|\(.\)/.*||'`"
   $ hg ci -qAm 'add symlink to top-level system directory'
+  [1]
 
   $ hg init sub1
   $ echo pwned > sub1/pwned
@@ -540,6 +547,8 @@
   > +0000000000000000000000000000000000000000 $SUB
   > EOF
   $ hg debugsetparents 1
+  abort: unknown revision '1'!
+  [255]
   $ hg import --bypass -qm 'update subrepo "$SUB"' - <<'EOF'
   > diff --git a/.hgsubstate b/.hgsubstate
   > --- a/.hgsubstate
@@ -548,6 +557,10 @@
   > -0000000000000000000000000000000000000000 $SUB
   > +f40c9134ba1b6961e12f250868823f0092fb68a8 $SUB
   > EOF
+  unable to find '.hgsubstate' for patching
+  (use '--prefix' to apply patch relative to the current directory)
+  abort: patch failed to apply
+  [255]
   $ cd ..
 
 on clone (and update) without fakehome directory:
@@ -586,22 +599,14 @@
   $ mkdir "$FAKEHOME"
   $ touch "$FAKEHOME/a"
   $ SUB="$FAKEHOME" hg clone -qr1 main main5
-  abort: subrepo path contains illegal component: $SUB
+  abort: unknown revision '1'!
   [255]
   $ ls "$FAKEHOME"
   a
   $ test -d "$FAKEHOME/.hg"
   [1]
   $ SUB="$FAKEHOME" hg -R main5 pull -u
-  pulling from $TESTTMP/envvarsym/main
-  searching for changes
-  adding changesets
-  adding manifests
-  adding file changes
-  added 1 changesets with 1 changes to 1 files
-  new changesets * (glob)
-  .hgsubstate: untracked file differs
-  abort: untracked files in working directory differ from files in requested revision
+  abort: repository main5 not found!
   [255]
   $ ls "$FAKEHOME"
   a
@@ -616,20 +621,12 @@
   $ touch "$FAKEHOME/a"
   $ hg -R "$FAKEHOME" ci -qAm 'add fakehome file'
   $ SUB="$FAKEHOME" hg clone -qr1 main main6
-  abort: subrepo path contains illegal component: $SUB
+  abort: unknown revision '1'!
   [255]
   $ ls "$FAKEHOME"
   a
   $ SUB="$FAKEHOME" hg -R main6 pull -u
-  pulling from $TESTTMP/envvarsym/main
-  searching for changes
-  adding changesets
-  adding manifests
-  adding file changes
-  added 1 changesets with 1 changes to 1 files
-  new changesets * (glob)
-  .hgsubstate: untracked file differs
-  abort: untracked files in working directory differ from files in requested revision
+  abort: repository main6 not found!
   [255]
   $ ls "$FAKEHOME"
   a
@@ -642,18 +639,14 @@
   $ touch "$FAKEHOME/a"
   $ hg -R "$FAKEHOME" ci -qAm 'add fakehome file'
   $ SUB="$FAKEHOME" hg clone -qr0 main main7
+  abort: subrepo path contains illegal component: $SUB
+  [255]
   $ ls "$FAKEHOME"
   a
   $ SUB="$FAKEHOME" hg -R main7 pull -uf
   pulling from $TESTTMP/envvarsym/main
   searching for changes
-  adding changesets
-  adding manifests
-  adding file changes
-  added 2 changesets with 3 changes to 2 files
-  new changesets * (glob)
-  abort: subrepo path contains illegal component: $SUB
-  [255]
+  no changes found
   $ ls "$FAKEHOME"
   a
 

test-bookmarks-corner-case.t

--- c:/hgdev/src/tests/test-bookmarks-corner-case.t
+++ c:/hgdev/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-branch-option.t

--- c:/hgdev/src/tests/test-branch-option.t
+++ c:/hgdev/src/tests/test-branch-option.t.err
@@ -88,11 +88,11 @@
   $ hg --encoding utf-8 up æ
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ hg --encoding latin1 out -q ../branch#.
-  2:df5a44224d4e
-  3:4f4a5125ca10
+  2:3e0f1556a145
+  3:a5e3f9917d82
   $ hg --encoding latin1 out -q -b .
-  2:df5a44224d4e
-  3:4f4a5125ca10
+  2:3e0f1556a145
+  3:a5e3f9917d82
 
 clone branch b
 

test-check-module-imports.t

--- c:/hgdev/src/tests/test-check-module-imports.t
+++ c:/hgdev/src/tests/test-check-module-imports.t.err
@@ -38,3 +38,20 @@
   > -X tests/test-imports-checker.t    > -X tests/test-verify-repo-operations.py    > | sed 's-\-/-g' | "$PYTHON" "$import_checker" -
+  contrib/ci/lambda_functions/ci.py:20: direct symbol import Key from boto3.dynamodb.conditions
 (esc)
+  contrib/ci/lambda_functions/web.py:16: direct symbol import Key from boto3.dynamodb.conditions
 (esc)
+  Traceback (most recent call last):
 (esc)
+    File "c:\hgdev\src\tests/../contrib/import-checker.py", line 813, in <module>
 (esc)
+      sys.exit(int(main(sys.argv)))
 (esc)
+    File "c:\hgdev\src\tests/../contrib/import-checker.py", line 780, in main
 (esc)
+      for src, modname, name, line in sources(source_path, localmodname):
 (esc)
+    File "c:\hgdev\src\tests/../contrib/import-checker.py", line 758, in sources
 (esc)
+      for script, modname, t, line in embedded(f, modname, src):
 (esc)
+    File "c:\hgdev\src\tests/../contrib/import-checker.py", line 728, in embedded
 (esc)
+      for name, starts, ends, code in testparseutil.pyembedded(f, src, errors):
 (esc)
+    File "c:\hgdev\src\contrib\testparseutil.py", line 186, in embedded
 (esc)
+      for lineno, line in enumerate(lines, 1):
 (esc)
+    File "c:\hgdev\python37-x64\lib\encodings\cp1252.py", line 23, in decode
 (esc)
+      return codecs.charmap_decode(input,self.errors,decoding_table)[0]
 (esc)
+  UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 2154: character maps to <undefined>
 (esc)
+  [1]

test-churn.t

--- c:/hgdev/src/tests/test-churn.t
+++ c:/hgdev/src/tests/test-churn.t.err
@@ -168,7 +168,7 @@
   user3           3 *******************************************
   user2           2 *****************************
   user4           2 *****************************
-  El Niño         1 ************** (esc)
+  El Niño        1 ************** (esc)
   with space      1 **************
 
 Test --template argument, with backwards compatibility

test-commandserver.t

--- c:/hgdev/src/tests/test-commandserver.t
+++ c:/hgdev/src/tests/test-commandserver.t.err
@@ -1044,15 +1044,16 @@
   $ hg commit -qAm base
   $ ln -s ../merge-symlink-out a
   $ hg commit -qAm 'symlink a -> ../merge-symlink-out'
+  [1]
   $ hg up -q 0
   $ mkdir a
+  mkdir: cannot create directory `a': File exists
+  [1]
   $ touch a/poisoned
   $ hg commit -qAm 'file a/poisoned'
   $ hg log -G -T '{rev}: {desc}
'
-  @  2: file a/poisoned
+  @  1: file a/poisoned
   |
-  | o  1: symlink a -> ../merge-symlink-out
-  |/
   o  0: base
   
 
@@ -1070,9 +1071,11 @@
   ...     # here a is a symlink, so a/poisoned is bad
   ...     runcommand(server, [b'merge', b'2'])
   *** runcommand up -qC 2
+  abort: unknown revision '2'!
+   [255]
   *** runcommand up -qC 1
   *** runcommand merge 2
-  abort: path 'a/poisoned' traverses symbolic link 'a'
+  abort: unknown revision '2'!
    [255]
   $ ls ../merge-symlink-out
 
@@ -1093,13 +1096,14 @@
   ...     # here 'a' is a symlink, so a/poisoned should be warned
   ...     runcommand(server, [b'files', b'a/poisoned'])
   *** runcommand up -qC 2
+  abort: unknown revision '2'!
+   [255]
   *** runcommand files a/poisoned
-  a/poisoned
+   [1]
   *** runcommand up -qC 0
   *** runcommand up -qC 1
   *** runcommand files a/poisoned
-  abort: path 'a/poisoned' traverses symbolic link 'a'
-   [255]
+  a/poisoned
 
   $ cd ..
 

test-debugcommands.t

--- c:/hgdev/src/tests/test-debugcommands.t
+++ c:/hgdev/src/tests/test-debugcommands.t.err
@@ -440,11 +440,12 @@
   > }
   $ dolock -s &
   $ waitlock .hg/store/lock
-
-  $ hg debuglocks
-  lock:  user *, process * (*s) (glob)
-  wlock: free
+  timeout: .hg/store/lock was not created in 5 seconds
   [1]
+
+  $ hg debuglocks
+  lock:  free
+  wlock: free
   $ touch .hg/unlock
   $ wait
   $ [ -f .hg/store/lock ] || echo "There is no lock"
@@ -454,11 +455,12 @@
 
   $ dolock -S &
   $ waitlock .hg/wlock
-
-  $ hg debuglocks
-  lock:  free
-  wlock: user *, process * (*s) (glob)
+  timeout: .hg/wlock was not created in 5 seconds
   [1]
+
+  $ hg debuglocks
+  lock:  free
+  wlock: free
   $ touch .hg/unlock
   $ wait
   $ [ -f .hg/wlock ] || echo "There is no wlock"
@@ -468,20 +470,21 @@
 
   $ dolock -Ss &
   $ waitlock .hg/wlock && waitlock .hg/store/lock
-
-  $ hg debuglocks
-  lock:  user *, process * (*s) (glob)
-  wlock: user *, process * (*s) (glob)
-  [2]
+  timeout: .hg/wlock was not created in 5 seconds
+  [1]
+
+  $ hg debuglocks
+  lock:  free
+  wlock: free
 
 * Test failing to set a lock
 
   $ hg debuglocks -s
-  abort: lock is already held
+  ready to release the lock (y)?  abort: response expected
   [255]
 
   $ hg debuglocks -S
-  abort: wlock is already held
+  ready to release the lock (y)?  abort: response expected
   [255]
 
   $ touch .hg/unlock
@@ -495,13 +498,16 @@
 
   $ dolock -s &
   $ waitlock .hg/store/lock
-
-  $ hg debuglocks
-  lock:  user *, process * (*s) (glob)
-  wlock: free
+  timeout: .hg/store/lock was not created in 5 seconds
   [1]
 
+  $ hg debuglocks
+  lock:  free
+  wlock: free
+
   $ hg debuglocks -L
+  abort: $ENOENT$: '$TESTTMP\debugrevlog\.hg/store\lock'
+  [255]
 
   $ hg debuglocks
   lock:  free
@@ -514,13 +520,16 @@
 
   $ dolock -S &
   $ waitlock .hg/wlock
-
-  $ hg debuglocks
-  lock:  free
-  wlock: user *, process * (*s) (glob)
+  timeout: .hg/wlock was not created in 5 seconds
   [1]
 
+  $ hg debuglocks
+  lock:  free
+  wlock: free
+
   $ hg debuglocks -W
+  abort: $ENOENT$: '$TESTTMP\debugrevlog\.hg\wlock'
+  [255]
 
   $ hg debuglocks
   lock:  free

test-encoding-align.t

--- c:/hgdev/src/tests/test-encoding-align.t
+++ c:/hgdev/src/tests/test-encoding-align.t.err
@@ -102,22 +102,20 @@
 check alignment of user names in annotate
 
   $ hg annotate -u $M
-          短名: first line(2) (esc)
-       MIDDLE_: second line(2)
-  長い長い名前: third line(2) (esc)
+              短名: first line(2) (esc)
+             MIDDLE_: second line(2)
+  長い長い名前: third line(2) (esc)
 
 check alignment of filenames in diffstat
 
   $ hg diff -c tip --stat
-   MIDDLE_      |  1 +
-   短名         |  1 + (esc)
-   長い長い名前 |  1 + (esc)
-   3 files changed, 3 insertions(+), 0 deletions(-)
+   MIDDLE_ |  1 +
+   1 files changed, 1 insertions(+), 0 deletions(-)
 
 add branches/tags
 
   $ hg branch $S
-  marked working directory as branch 短名 (esc)
+  marked working directory as branch 短名 (esc)
   (branches are permanent and global, did you want a bookmark?)
   $ hg tag $S
   $ hg book -f $S
@@ -126,29 +124,29 @@
   $ hg tag $M
   $ hg book -f $M
   $ hg branch $L
-  marked working directory as branch 長い長い名前 (esc)
+  marked working directory as branch 長い長い名前 (esc)
   $ hg tag $L
   $ hg book -f $L
 
 check alignment of branches
 
   $ hg branches
-  長い長い名前                   5:d745ff46155b (esc)
-  MIDDLE_                        4:9259be597f19 (inactive)
-  短名                           3:b06c5b6def9e (inactive) (esc)
-  default                        2:64a70663cee8 (inactive)
+  長い長い名前             5:cc6831309048 (esc)
+  MIDDLE_                        4:bac95d255fe8 (inactive)
+  短名                         3:d6829fef7e9f (inactive) (esc)
+  default                        2:8410b134db4d (inactive)
 
 check alignment of tags
 
   $ hg tags
-  tip                                5:d745ff46155b
-  長い長い名前                       4:9259be597f19 (esc)
-  MIDDLE_                            3:b06c5b6def9e
-  短名                               2:64a70663cee8 (esc)
+  tip                                5:cc6831309048
+  長い長い名前                 4:bac95d255fe8 (esc)
+  MIDDLE_                            3:d6829fef7e9f
+  短名                             2:8410b134db4d (esc)
 
 check alignment of bookmarks
 
   $ hg book
-     MIDDLE_                   5:d745ff46155b
-     短名                      4:9259be597f19 (esc)
-   * 長い長い名前              5:d745ff46155b (esc)
+     MIDDLE_                   5:cc6831309048
+     短名                    4:bac95d255fe8 (esc)
+   * 長い長い名前        5:cc6831309048 (esc)

test-encoding.t

--- c:/hgdev/src/tests/test-encoding.t
+++ c:/hgdev/src/tests/test-encoding.t.err
@@ -54,20 +54,20 @@
 hg log (ascii)
 
   $ hg --encoding ascii log
-  changeset:   5:a52c0692f24a
-  branch:      ?
-  tag:         tip
-  user:        test
-  date:        Thu Jan 01 00:00:00 1970 +0000
-  summary:     latin1 branch
-  
-  changeset:   4:94db611b4196
-  user:        test
-  date:        Thu Jan 01 00:00:00 1970 +0000
-  summary:     Added tag ? for changeset ca661e7520de
-  
-  changeset:   3:ca661e7520de
-  tag:         ?
+  changeset:   5:a74cbe165c69
+  branch:      ??
+  tag:         tip
+  user:        test
+  date:        Thu Jan 01 00:00:00 1970 +0000
+  summary:     latin1 branch
+  
+  changeset:   4:b864fdcf7a95
+  user:        test
+  date:        Thu Jan 01 00:00:00 1970 +0000
+  summary:     Added tag ?? for changeset ca661e7520de
+  
+  changeset:   3:ca661e7520de
+  tag:         ??
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     utf-8 e' encoded: ?
@@ -91,14 +91,14 @@
 hg log (latin-1)
 
   $ hg --encoding latin-1 log
-  changeset:   5:a52c0692f24a
+  changeset:   5:a74cbe165c69
   branch:      é (esc)
   tag:         tip
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     latin1 branch
   
-  changeset:   4:94db611b4196
+  changeset:   4:b864fdcf7a95
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     Added tag é for changeset ca661e7520de (esc)
@@ -128,14 +128,14 @@
 hg log (utf-8)
 
   $ hg --encoding utf-8 log
-  changeset:   5:a52c0692f24a
+  changeset:   5:a74cbe165c69
   branch:      é (esc)
   tag:         tip
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     latin1 branch
   
-  changeset:   4:94db611b4196
+  changeset:   4:b864fdcf7a95
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     Added tag é for changeset ca661e7520de (esc)
@@ -165,27 +165,27 @@
 hg tags (ascii)
 
   $ HGENCODING=ascii hg tags
-  tip                                5:a52c0692f24a
-  ?                                  3:ca661e7520de
+  tip                                5:a74cbe165c69
+  ??                                 3:ca661e7520de
 
 hg tags (latin-1)
 
   $ HGENCODING=latin-1 hg tags
-  tip                                5:a52c0692f24a
-  é                                  3:ca661e7520de (esc)
+  tip                                5:a74cbe165c69
+  é                                 3:ca661e7520de (esc)
 
 hg tags (utf-8)
 
   $ HGENCODING=utf-8 hg tags
-  tip                                5:a52c0692f24a
-  é                                  3:ca661e7520de (esc)
+  tip                                5:a74cbe165c69
+  é                                 3:ca661e7520de (esc)
 
 hg tags (JSON)
 
   $ hg tags -Tjson
   [
    {
-    "node": "a52c0692f24ad921c0a31e1736e7635a8b23b670",
+    "node": "a74cbe165c69f71f87bc12cc1d1e9add8d8cc9af",
     "rev": 5,
     "tag": "tip",
     "type": ""
@@ -201,34 +201,34 @@
 hg branches (ascii)
 
   $ HGENCODING=ascii hg branches
-  ?                              5:a52c0692f24a
-  default                        4:94db611b4196 (inactive)
+  ??                             5:a74cbe165c69
+  default                        4:b864fdcf7a95 (inactive)
 
 hg branches (latin-1)
 
   $ HGENCODING=latin-1 hg branches
-  é                              5:a52c0692f24a (esc)
-  default                        4:94db611b4196 (inactive)
+  é                             5:a74cbe165c69 (esc)
+  default                        4:b864fdcf7a95 (inactive)
 
 hg branches (utf-8)
 
   $ HGENCODING=utf-8 hg branches
-  é                              5:a52c0692f24a (esc)
-  default                        4:94db611b4196 (inactive)
+  é                             5:a74cbe165c69 (esc)
+  default                        4:b864fdcf7a95 (inactive)
   $ echo '[ui]' >> .hg/hgrc
   $ echo 'fallbackencoding = koi8-r' >> .hg/hgrc
 
 hg log (utf-8)
 
   $ HGENCODING=utf-8 hg log
-  changeset:   5:a52c0692f24a
+  changeset:   5:a74cbe165c69
   branch:      é (esc)
   tag:         tip
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     latin1 branch
   
-  changeset:   4:94db611b4196
+  changeset:   4:b864fdcf7a95
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     Added tag é for changeset ca661e7520de (esc)
@@ -262,7 +262,7 @@
   (please check your locale settings)
   [255]
   $ HGENCODING=ascii hg branch `cat latin-1-tag`
-  abort: decoding near 'é': 'ascii' codec can't decode byte 0xe9 in position 0: ordinal not in range(128)! (esc)
+  abort: decoding near 'é': 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)! (esc)
   [255]
   $ cp latin-1-tag .hg/branch
   $ HGENCODING=latin-1 hg ci -m 'auto-promote legacy name'

test-extdata.t

--- c:/hgdev/src/tests/test-extdata.t
+++ c:/hgdev/src/tests/test-extdata.t.err
@@ -78,18 +78,130 @@
 test template support:
 
   $ hg log -r:3 -T "{node|short}{if(extdata('notes'), ' # {extdata('notes')}')}
"
-  06254b906311 # first post
-  e8342c9a2ed1 # this is buggy :(
-  f6ed99a58333 # this change is great!
-  9de260b1e88e
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)]
+  ** Mercurial Distributed SCM (version 5.1.2+610-1cb7facd85b4)
+  ** Extensions loaded: 
+  Traceback (most recent call last):
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\bin\hg", line 36, in <module>
 (esc)
+      dispatch.run()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 111, in run
 (esc)
+      status = dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 250, in dispatch
 (esc)
+      ret = _runcatch(req) or 0
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 424, in _runcatch
 (esc)
+      return _callcatch(ui, _runcatchfunc)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 433, in _callcatch
 (esc)
+      return scmutil.callcatch(ui, func)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 177, in callcatch
 (esc)
+      return func()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 414, in _runcatchfunc
 (esc)
+      return _dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1174, in _dispatch
 (esc)
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 862, in runcommand
 (esc)
+      ret = _runcommand(ui, options, cmd, d)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1185, in _runcommand
 (esc)
+      return cmdfunc()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1171, in <lambda>
 (esc)
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1843, in check
 (esc)
+      return func(*args, **kwargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\commands.py", line 4719, in log
 (esc)
+      displayfn(ui, repo, revs, displayer, getcopies)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 1051, in displayrevs
 (esc)
+      displayer.show(ctx, copies=copies)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 264, in show
 (esc)
+      self._show(ctx, copies, props)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 586, in _show
 (esc)
+      self.ui.write(self.t.render(key, props))
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templater.py", line 1029, in render
 (esc)
+      return b''.join(self.generate(t, mapping))
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1744, in increasingchunks
 (esc)
+      for chunk in source:
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 792, in flatten
 (esc)
+      for i in thing:
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 996, in runtemplate
 (esc)
+      yield evalrawexp(context, mapping, arg)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 845, in evalrawexp
 (esc)
+      return func(context, mapping, data)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templatefuncs.py", line 386, in if_
 (esc)
+      test = evalboolean(context, mapping, args[0])
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 887, in evalboolean
 (esc)
+      thing = func(context, mapping, data)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templatefuncs.py", line 150, in extdata
 (esc)
+      data = cache[source] = scmutil.extdatasource(ctx.repo(), source)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 1697, in extdatasource
 (esc)
+      src = url.open(repo.ui, spec)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\url.py", line 679, in open
 (esc)
+      url_ = b'file://' + pycompat.bytesurl(urlreq.pathname2url(path))
 (esc)
+    File "C:\hgdev\python37-x64\Lib\nturl2path.py", line 53, in pathname2url
 (esc)
+      if not ':' in p:
 (esc)
+  TypeError: a bytes-like object is required, not 'str'
 (esc)
+  [1]
 
 test template cache:
 
   $ hg log -r:3 -T '{rev} "{extdata("notes")}" "{extdata("shelldata")}"
'
-  0 "first post" ""
-  1 "this is buggy :(" ""
-  2 "this change is great!" "another comment on 2"
-  3 "" ""
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)]
+  ** Mercurial Distributed SCM (version 5.1.2+610-1cb7facd85b4)
+  ** Extensions loaded: 
+  Traceback (most recent call last):
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\bin\hg", line 36, in <module>
 (esc)
+      dispatch.run()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 111, in run
 (esc)
+      status = dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 250, in dispatch
 (esc)
+      ret = _runcatch(req) or 0
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 424, in _runcatch
 (esc)
+      return _callcatch(ui, _runcatchfunc)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 433, in _callcatch
 (esc)
+      return scmutil.callcatch(ui, func)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 177, in callcatch
 (esc)
+      return func()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 414, in _runcatchfunc
 (esc)
+      return _dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1174, in _dispatch
 (esc)
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 862, in runcommand
 (esc)
+      ret = _runcommand(ui, options, cmd, d)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1185, in _runcommand
 (esc)
+      return cmdfunc()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1171, in <lambda>
 (esc)
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1843, in check
 (esc)
+      return func(*args, **kwargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\commands.py", line 4719, in log
 (esc)
+      displayfn(ui, repo, revs, displayer, getcopies)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 1051, in displayrevs
 (esc)
+      displayer.show(ctx, copies=copies)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 264, in show
 (esc)
+      self._show(ctx, copies, props)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\logcmdutil.py", line 586, in _show
 (esc)
+      self.ui.write(self.t.render(key, props))
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templater.py", line 1029, in render
 (esc)
+      return b''.join(self.generate(t, mapping))
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1744, in increasingchunks
 (esc)
+      for chunk in source:
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 792, in flatten
 (esc)
+      for i in thing:
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 996, in runtemplate
 (esc)
+      yield evalrawexp(context, mapping, arg)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templateutil.py", line 845, in evalrawexp
 (esc)
+      return func(context, mapping, data)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\templatefuncs.py", line 150, in extdata
 (esc)
+      data = cache[source] = scmutil.extdatasource(ctx.repo(), source)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 1697, in extdatasource
 (esc)
+      src = url.open(repo.ui, spec)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\url.py", line 679, in open
 (esc)
+      url_ = b'file://' + pycompat.bytesurl(urlreq.pathname2url(path))
 (esc)
+    File "C:\hgdev\python37-x64\Lib\nturl2path.py", line 53, in pathname2url
 (esc)
+      if not ':' in p:
 (esc)
+  TypeError: a bytes-like object is required, not 'str'
 (esc)
+  [1]
 
 test bad extdata() template source
 

test-extdiff.t

UnicodeDecodeError('unicodeescape', b'--- c:/hgdev/src/tests/test-extdiff.t\n+++ c:/hgdev/src/tests/test-extdiff.t.err\n@@ -438,8 +438,8 @@\n   making snapshot of 2 files from working directory\n     a\n     b\n-  running \'$TESTTMP/a/dir/tool.bat a.* a\' in */extdiff.* (glob) (windows !)\n   running \'$TESTTMP/a/dir/tool.sh a.* a\' in */extdiff.* (glob) (no-windows !)\n+  running \'"$TESTTMP/a/dir/tool.bat" a.8a5febb7f867 a\' in C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\extdiff.3jgs6ma8\n   ** custom diff **\n   file changed while diffing. Overwriting: $TESTTMP/a/a (src: */extdiff.*/a/a) (glob)\n   cleaning up temp directory\n@@ -486,9 +486,13 @@\n   adding a\n   $ echo a >> a\n   $ ln -s missing linka\n+  ln: creating symbolic link `linka\' to `missing\': $ENOENT$\n+  [1]\n   $ hg add linka\n+  linka: $ENOENT$\n+  [1]\n   $ hg falabala -r 0 --traceback\n-  diffing testsymlinks.07f494440405 testsymlinks\n+  diffing "C:\\\\Users\\\\ADMINI~1\\\\AppData\\\\Local\\\\Temp\\\\extdiff.uf_bobth\\\\testsymlinks.07f494440405\\\\a" "$TESTTMP\\\\testsymlinks\\\\a"\\r (esc)\n   [1]\n   $ cd ..\n \n@@ -514,4 +518,4 @@\n \n   $ LC_MESSAGES=ja_JP.UTF-8 hg --config hgext.extdiff= --config extdiff.cmd.td=$U help td \\\n   > | grep "^      \'"\n-        \'\\xa5\\xa5\'\n+        \'\\xc2\\xa5\\xc2\\xa5\'\n', 384, 386, 'truncated \\UXXXXXXXX escape') decoding diff, sorry

test-fileset.t

--- c:/hgdev/src/tests/test-fileset.t
+++ c:/hgdev/src/tests/test-fileset.t.err
@@ -573,7 +573,6 @@
 #if symlink
   $ ln -s b2 b2link
   $ fileset 'symlink() and unknown()'
-  b2link
   $ hg add b2link
 #endif
 
@@ -739,7 +738,6 @@
 
 #if symlink
   $ fileset -r1 'symlink()'
-  b2link
 #endif
 
 #if no-windows
@@ -778,10 +776,11 @@
   b1
   b2
   b2.orig
+  b2link
   c1
   c2
+  con.xml (no-windows !)
   c3
-  con.xml (no-windows !)
   mixed
   unknown
   $ fileset 'eol(mac)'
@@ -854,9 +853,10 @@
   A 1k
   A 2k
   A b2link (no-windows !)
+  A b2link
   A bin
+  A con.xml (no-windows !)
   A c1
-  A con.xml (no-windows !)
   R a2
   $ hg status --change 2
   M b2
@@ -865,9 +865,10 @@
   A 1k
   A 2k
   A b2link (no-windows !)
+  A b2link
   A bin
+  A con.xml (no-windows !)
   A c1
-  A con.xml (no-windows !)
   R a2
   $ hg status --change 4
   A .hgsub
@@ -998,18 +999,20 @@
   A 1k
   A 2k
   A b2link (no-windows !)
+  A b2link
   A bin
+  A con.xml (no-windows !)
   A c1
-  A con.xml (no-windows !)
   $ fileset "status('0:1', '3:4', added())"
   .hgsub
   .hgsubstate
   1k
   2k
   b2link (no-windows !)
+  b2link
   bin
-  c1
   con.xml (no-windows !)
+  c1
 
 tests with empty value
 ----------------------

test-fix.t

--- c:/hgdev/src/tests/test-fix.t
+++ c:/hgdev/src/tests/test-fix.t.err
@@ -606,7 +606,7 @@
   $ sleep 2 # mtime has a resolution of one or two seconds.
   $ hg fix --working-dir
   $ f foo.whole.orig --newer foo.whole
-  foo.whole.orig: newer than foo.whole
+  foo.whole.orig: older than foo.whole
 
   $ cd ..
 
@@ -937,6 +937,7 @@
   0
   $ hg fix -r .
   $ hg log --template '{rev}
'
+  1
   0
 
   $ cd ..
@@ -955,6 +956,7 @@
   M foo.whole
   $ hg fix -r .
   $ hg status --change tip
+  M foo.whole
 
   $ cd ..
 
@@ -982,15 +984,17 @@
   
   $ hg fix -r 0:2
   $ hg log --graph --template '{rev} {files}'
-  o  4 bar.whole
+  o  5 bar.whole
   |
-  o  3
+  o  4
   |
-  | @  2 bar.whole
-  | |
-  | x  1 foo.whole
-  |/
-  o  0 foo.whole
+  o  3 foo.whole
+  
+  @  2 bar.whole
+  |
+  x  1 foo.whole
+  |
+  x  0 foo.whole
   
 
   $ cd ..

test-fncache.t

--- c:/hgdev/src/tests/test-fncache.t
+++ c:/hgdev/src/tests/test-fncache.t.err
@@ -122,9 +122,7 @@
   .hg/undo.phaseroots
   .hg/wcache
   .hg/wcache/checkisexec (execbit !)
-  .hg/wcache/checklink (symlink !)
-  .hg/wcache/checklink-target (symlink !)
-  .hg/wcache/manifestfulltextcache (reporevlogstore !)
+  .hg/wcache/manifestfulltextcache
   $ cd ..
 
 Non fncache repo:
@@ -163,9 +161,7 @@
   .hg/undo.dirstate
   .hg/wcache
   .hg/wcache/checkisexec (execbit !)
-  .hg/wcache/checklink (symlink !)
-  .hg/wcache/checklink-target (symlink !)
-  .hg/wcache/manifestfulltextcache (reporevlogstore !)
+  .hg/wcache/manifestfulltextcache
   $ cd ..
 
 Encoding of reserved / long paths in the store

test-globalopts.t

--- c:/hgdev/src/tests/test-globalopts.t
+++ c:/hgdev/src/tests/test-globalopts.t.err
@@ -279,6 +279,8 @@
   $ hg --cwd a --time id
   8580ff50825a tip
   time: real * (glob)
+  C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py:1040: DeprecationWarning: time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead
 (esc)
+    t = (t[0], t[1], t[2], t[3], time.clock())
 (esc)
 
 Testing --version:
 

test-hardlinks.t

--- c:/hgdev/src/tests/test-hardlinks.t
+++ c:/hgdev/src/tests/test-hardlinks.t.err
@@ -265,13 +265,12 @@
   2 r4/.hg/undo.desc
   [24] r4/\.hg/undo\.dirstate (re)
   2 r4/.hg/wcache/checkisexec (execbit !)
-  2 r4/.hg/wcache/checklink-target (symlink !)
+  2 r4/.hg/wcache/manifestfulltextcache
 (esc)
   2 r4/.hg/wcache/checknoexec (execbit !)
-  2 r4/.hg/wcache/manifestfulltextcache (reporevlogstore !)
-  2 r4/d1/data1
-  2 r4/d1/f2
-  2 r4/f1
-  2 r4/f3
+  2 r4/d1/data1
 (esc)
+  2 r4/d1/f2
 (esc)
+  2 r4/f1
 (esc)
+  2 r4/f3
 (esc)
 
 Update back to revision 12 in r4 should break hardlink of file f1 and f3:
 #if hardlink-whitelisted
@@ -316,14 +315,13 @@
   2 r4/.hg/undo.desc
   [24] r4/\.hg/undo\.dirstate (re)
   2 r4/.hg/wcache/checkisexec (execbit !)
-  2 r4/.hg/wcache/checklink-target (symlink !)
+  1 r4/.hg/wcache/manifestfulltextcache
 (esc)
   2 r4/.hg/wcache/checknoexec (execbit !)
-  1 r4/.hg/wcache/manifestfulltextcache (reporevlogstore !)
-  2 r4/d1/data1
-  2 r4/d1/f2
-  1 r4/f1
+  2 r4/d1/data1
 (esc)
+  2 r4/d1/f2
 (esc)
+  1 r4/f1
 (esc)
+  2 r4/f3
 (esc)
   1 r4/f3 (execbit !)
-  2 r4/f3 (no-execbit !)
 
 #if hardlink-whitelisted
   $ nlinksdir r4/.hg/undo.backup.dirstate r4/.hg/undo.dirstate

test-help.t

--- c:/hgdev/src/tests/test-help.t
+++ c:/hgdev/src/tests/test-help.t.err
@@ -1909,22 +1909,16 @@
   > upper = b"‹L˜^"
   > pycompat.stdout.write(b"hg --encoding cp932 help -e ambiguous.%s
" % upper)
   > EOF
-  ‹L˜^ (esc)
-  ----
-  
-  Upper name should show only this message
-  
+  abort: help section not found: ambiguous.‹L˜^ (esc)
+  [255]
 
   $ "$PYTHON" <<EOF | sh
   > from mercurial import pycompat
   > lower = b"‹l˜^"
   > pycompat.stdout.write(b"hg --encoding cp932 help -e ambiguous.%s
" % lower)
   > EOF
-  ‹l˜^ (esc)
-  ----
-  
-  Lower name should show only this message
-  
+  abort: help section not found: ambiguous.‹l˜^ (esc)
+  [255]
 
   $ cat >> $HGRCPATH <<EOF
   > [extensions]

test-hgwebdirsym.t

--- c:/hgdev/src/tests/test-hgwebdirsym.t
+++ c:/hgdev/src/tests/test-hgwebdirsym.t.err
@@ -40,6 +40,9 @@
   /al/
   /b/
   /c/
+  /circle/al/
+  /circle/b/
+  /circle/c/
   
   $ get-with-headers.py localhost:$HGPORT 'al/file/tip/a?style=raw'
   200 Script output follows
@@ -57,22 +60,20 @@
 should fail
 
   $ get-with-headers.py localhost:$HGPORT 'circle/al/file/tip/a?style=raw'
-  404 Not Found
+  200 Script output follows
   
-  
-  error: repository circle/al/file/tip/a not found
-  [1]
+  a
   $ get-with-headers.py localhost:$HGPORT 'circle/b/file/tip/a?style=raw'
   404 Not Found
   
   
-  error: repository circle/b/file/tip/a not found
+  error: a@39505516671b: not found in manifest
   [1]
   $ get-with-headers.py localhost:$HGPORT 'circle/c/file/tip/a?style=raw'
   404 Not Found
   
   
-  error: repository circle/c/file/tip/a not found
+  error: a@bbb02779a5d2: not found in manifest
   [1]
 
 collections errors

test-histedit-arguments.t#abortcommand

--- c:/hgdev/src/tests/test-histedit-arguments.t
+++ c:/hgdev/src/tests/test-histedit-arguments.t#abortcommand.err
@@ -309,7 +309,7 @@
   $ hg --encoding utf-8 commit --logfile logfile
 
   $ HGEDITOR=cat hg --encoding utf-8 histedit tip
-  pick 3d3ea1f3a10b 5 1234567890123456789012345678901234567890123456789012345あ... (esc)
+  pick 3d3ea1f3a10b 5 1234567890123456789012345678901234567890123456789012345あ...
 (esc)
   
   # Edit history between 3d3ea1f3a10b and 3d3ea1f3a10b
   #

test-histedit-arguments.t#abortflag

--- c:/hgdev/src/tests/test-histedit-arguments.t
+++ c:/hgdev/src/tests/test-histedit-arguments.t#abortflag.err
@@ -309,7 +309,7 @@
   $ hg --encoding utf-8 commit --logfile logfile
 
   $ HGEDITOR=cat hg --encoding utf-8 histedit tip
-  pick 3d3ea1f3a10b 5 1234567890123456789012345678901234567890123456789012345あ... (esc)
+  pick 3d3ea1f3a10b 5 1234567890123456789012345678901234567890123456789012345あ...
 (esc)
   
   # Edit history between 3d3ea1f3a10b and 3d3ea1f3a10b
   #

test-hook.t

--- c:/hgdev/src/tests/test-hook.t
+++ c:/hgdev/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-http-bad-server.t

--- c:/hgdev/src/tests/test-http-bad-server.t
+++ c:/hgdev/src/tests/test-http-bad-server.t.err
@@ -995,8 +995,8 @@
   sendall(9 from 9) -> (77) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (68) 4\r\n)\r\n (esc)
   sendall(47 from 47) -> (21) 29\r\nCHANGEGROUP	version02nbchanges1\r\n (esc)
-  sendall(9 from 9) -> (12) 4\r\nÒ\r\n (esc)
-  sendall(12 from 473) -> (0) 1d2\r\n²–î (esc)
+  sendall(9 from 9) -> (12) 4\r\nÒ\r\n
 (esc)
+  sendall(12 from 473) -> (0) 1d2\r\n²–î
 (esc)
   write limit reached; closing socket
   $LOCALIP - - [$ERRDATE$] Exception happened during processing request '/?cmd=getbundle': (glob)
   Traceback (most recent call last):
@@ -1050,8 +1050,8 @@
   sendall(9 from 9) -> (538) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (529) 4\r\n)\r\n (esc)
   sendall(47 from 47) -> (482) 29\r\nCHANGEGROUP	version02nbchanges1\r\n (esc)
-  sendall(9 from 9) -> (473) 4\r\nÒ\r\n (esc)
-  sendall(473 from 473) -> (0) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(9 from 9) -> (473) 4\r\nÒ\r\n
 (esc)
+  sendall(473 from 473) -> (0) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n
 (esc)
   write limit reached; closing socket
   $LOCALIP - - [$ERRDATE$] Exception happened during processing request '/?cmd=getbundle': (glob)
   Traceback (most recent call last):
@@ -1109,8 +1109,8 @@
   sendall(9 from 9) -> (569) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (560) 4\r\n)\r\n (esc)
   sendall(47 from 47) -> (513) 29\r\nCHANGEGROUP	version02nbchanges1\r\n (esc)
-  sendall(9 from 9) -> (504) 4\r\nÒ\r\n (esc)
-  sendall(473 from 473) -> (31) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(9 from 9) -> (504) 4\r\nÒ\r\n
 (esc)
+  sendall(473 from 473) -> (31) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n
 (esc)
   sendall(9 from 9) -> (22) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (13) 4\r\n \r\n (esc)
   sendall(13 from 38) -> (0) 20\r\nLISTKEYS (esc)
@@ -1167,8 +1167,8 @@
   sendall(9 from 9) -> (851) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (842) 4\r\n)\r\n (esc)
   sendall(47 from 47) -> (795) 29\r\nCHANGEGROUP	version02nbchanges1\r\n (esc)
-  sendall(9 from 9) -> (786) 4\r\nÒ\r\n (esc)
-  sendall(473 from 473) -> (313) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(9 from 9) -> (786) 4\r\nÒ\r\n
 (esc)
+  sendall(473 from 473) -> (313) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n
 (esc)
   sendall(9 from 9) -> (304) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (295) 4\r\n \r\n (esc)
   sendall(38 from 38) -> (257) 20\r\nLISTKEYS	namespacephases\r\n (esc)
@@ -1181,7 +1181,7 @@
   sendall(9 from 9) -> (107) 4\r\n\r\n (esc)
   sendall(35 from 35) -> (72) 1d\r\ncache:rev-branch-cache\r\n (esc)
   sendall(9 from 9) -> (63) 4\r\n'\r\n (esc)
-  sendall(45 from 45) -> (18) 27\r\ndefault–îsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(45 from 45) -> (18) 27\r\ndefault–îsTÄ­srvrÃjV:jL\r\n
 (esc)
   sendall(9 from 9) -> (9) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (0) 4\r\n\r\n (esc)
   write limit reached; closing socket
@@ -1245,8 +1245,8 @@
   sendall(9 from 9) -> (854) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (845) 4\r\n)\r\n (esc)
   sendall(47 from 47) -> (798) 29\r\nCHANGEGROUP	version02nbchanges1\r\n (esc)
-  sendall(9 from 9) -> (789) 4\r\nÒ\r\n (esc)
-  sendall(473 from 473) -> (316) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(9 from 9) -> (789) 4\r\nÒ\r\n
 (esc)
+  sendall(473 from 473) -> (316) 1d2\r\n²–îsTÄ­srvrÃjV:jL–îsTÄ­srvrÃjV:jL>6a3df4de388f3c4f8e28f4f9a814299a3cbb5f50\ntest\n0 0\nfoo\n\ninitial¡j=ôÞ8<OŽ(ôù¨)š<»_P–îsTÄ­srvrÃjV:jL-foob80de5d138758541c5f05265ad144ab9fa86d1db\nfooh¸\råÑ8u…AÅðRe­J¹ú†ÑۖîsTÄ­srvrÃjV:jL\r\n
 (esc)
   sendall(9 from 9) -> (307) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (298) 4\r\n \r\n (esc)
   sendall(38 from 38) -> (260) 20\r\nLISTKEYS	namespacephases\r\n (esc)
@@ -1259,7 +1259,7 @@
   sendall(9 from 9) -> (110) 4\r\n\r\n (esc)
   sendall(35 from 35) -> (75) 1d\r\ncache:rev-branch-cache\r\n (esc)
   sendall(9 from 9) -> (66) 4\r\n'\r\n (esc)
-  sendall(45 from 45) -> (21) 27\r\ndefault–îsTÄ­srvrÃjV:jL\r\n (esc)
+  sendall(45 from 45) -> (21) 27\r\ndefault–îsTÄ­srvrÃjV:jL\r\n
 (esc)
   sendall(9 from 9) -> (12) 4\r\n\r\n (esc)
   sendall(9 from 9) -> (3) 4\r\n\r\n (esc)
   sendall(3 from 5) -> (0) 0

test-http-branchmap.t

--- c:/hgdev/src/tests/test-http-branchmap.t
+++ c:/hgdev/src/tests/test-http-branchmap.t.err
@@ -19,11 +19,11 @@
   adding manifests
   adding file changes
   added 1 changesets with 1 changes to 1 files
-  new changesets 867c11ce77b8
+  new changesets e4d82e14af83
   updating to branch æ (esc)
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ hg --encoding utf-8 -R b log
-  changeset:   0:867c11ce77b8
+  changeset:   0:e4d82e14af83
   branch:      æ (esc)
   tag:         tip
   user:        test
@@ -40,14 +40,14 @@
   remote: adding file changes
   remote: added 1 changesets with 1 changes to 1 files
   $ hg -R a --encoding utf-8 log
-  changeset:   1:58e7c90d67cb
+  changeset:   1:43e645958b82
   branch:      æ (esc)
   tag:         tip
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000
   summary:     bar
   
-  changeset:   0:867c11ce77b8
+  changeset:   0:e4d82e14af83
   branch:      æ (esc)
   user:        test
   date:        Thu Jan 01 00:00:00 1970 +0000

test-http-proxy.t

--- c:/hgdev/src/tests/test-http-proxy.t
+++ c:/hgdev/src/tests/test-http-proxy.t.err
@@ -90,8 +90,14 @@
 misconfigured hosts)
 
   $ http_proxy=localhost:$HGPORT2 hg clone --config http_proxy.always=True http://localhost:$HGPORT/ f
-  abort: error: (Connection refused|Protocol not supported|.* actively refused it|\$EADDRNOTAVAIL\$|No route to host) (re)
-  [255]
+  requesting all changes
+  adding changesets
+  adding manifests
+  adding file changes
+  added 1 changesets with 1 changes to 1 files
+  new changesets 83180e7845de
+  updating to branch default
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
 do not use the proxy if it is in the no list
 
@@ -105,18 +111,3 @@
   updating to branch default
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ cat proxy.log
-  * - - [*] "GET http://localhost:$HGPORT/?cmd=capabilities HTTP/1.1" - - (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=batch HTTP/1.1" - - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=getbundle HTTP/1.1" - - x-hgarg-1:bookmarks=1&$USUAL_BUNDLE_CAPS$&cg=0&common=0000000000000000000000000000000000000000&heads=83180e7845de420a1bb46896fd5fe05294f8d629&listkeys=bookmarks&stream=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  * - - [*] "GET http://localhost:$HGPORT/?cmd=capabilities HTTP/1.1" - - (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=batch HTTP/1.1" - - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=getbundle HTTP/1.1" - - x-hgarg-1:bookmarks=1&$USUAL_BUNDLE_CAPS$&cg=1&common=0000000000000000000000000000000000000000&heads=83180e7845de420a1bb46896fd5fe05294f8d629&listkeys=bookmarks&phases=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  * - - [*] "GET http://localhost:$HGPORT/?cmd=capabilities HTTP/1.1" - - (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=batch HTTP/1.1" - - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=getbundle HTTP/1.1" - - x-hgarg-1:bookmarks=1&$USUAL_BUNDLE_CAPS$&cg=1&common=0000000000000000000000000000000000000000&heads=83180e7845de420a1bb46896fd5fe05294f8d629&listkeys=bookmarks&phases=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  * - - [*] "GET http://localhost:$HGPORT/?cmd=capabilities HTTP/1.1" - - (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=batch HTTP/1.1" - - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=getbundle HTTP/1.1" - - x-hgarg-1:bookmarks=1&$USUAL_BUNDLE_CAPS$&cg=1&common=0000000000000000000000000000000000000000&heads=83180e7845de420a1bb46896fd5fe05294f8d629&listkeys=bookmarks&phases=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  * - - [*] "GET http://localhost:$HGPORT/?cmd=capabilities HTTP/1.1" - - (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=batch HTTP/1.1" - - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)
-  $LOCALIP - - [$LOGDATE$] "GET http://localhost:$HGPORT/?cmd=getbundle HTTP/1.1" - - x-hgarg-1:bookmarks=1&$USUAL_BUNDLE_CAPS$&cg=1&common=0000000000000000000000000000000000000000&heads=83180e7845de420a1bb46896fd5fe05294f8d629&listkeys=bookmarks&phases=1 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull (glob)

test-install.t

--- c:/hgdev/src/tests/test-install.t
+++ c:/hgdev/src/tests/test-install.t.err
@@ -155,12 +155,124 @@
 
 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 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)]
+  ** Mercurial Distributed SCM (version 5.1.2+610-1cb7facd85b4)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\bin\hg", line 36, in <module>
 (esc)
+      dispatch.run()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 111, in run
 (esc)
+      status = dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 250, in dispatch
 (esc)
+      ret = _runcatch(req) or 0
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 424, in _runcatch
 (esc)
+      return _callcatch(ui, _runcatchfunc)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 433, in _callcatch
 (esc)
+      return scmutil.callcatch(ui, func)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 177, in callcatch
 (esc)
+      return func()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 414, in _runcatchfunc
 (esc)
+      return _dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1174, in _dispatch
 (esc)
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 862, in runcommand
 (esc)
+      ret = _runcommand(ui, options, cmd, d)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1185, in _runcommand
 (esc)
+      return cmdfunc()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1171, in <lambda>
 (esc)
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1843, in check
 (esc)
+      return func(*args, **kwargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\debugcommands.py", line 1696, in debuginstall
 (esc)
+      problems += handler(ui, fm)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\__init__.py", line 188, in debuginstall
 (esc)
+      v = c.command(b"version")
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\watchmanclient.py", line 108, in command
 (esc)
+      return self._command(*args)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\watchmanclient.py", line 97, in _command
 (esc)
+      return self._watchmanclient.query(*watchmanargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 996, in query
 (esc)
+      self._connect()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 863, in _connect
 (esc)
+      self.sockpath = self._resolvesockname()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 838, in _resolvesockname
 (esc)
+      p = subprocess.Popen(pycompat.rapply(procutil.tonativestr, cmd),
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 86, in rapply
 (esc)
+      return _rapply(f, xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 59, in _rapply
 (esc)
+      return type(xs)(_rapply(f, x) for x in xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 59, in <genexpr>
 (esc)
+      return type(xs)(_rapply(f, x) for x in xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 62, in _rapply
 (esc)
+      return f(xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\encoding.py", line 223, in unifromlocal
 (esc)
+      return fromlocal(s).decode('utf-8')
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\encoding.py", line 201, in fromlocal
 (esc)
+      if isasciistr(s):
 (esc)
+  TypeError: a bytes-like object is required, not 'str'
 (esc)
   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 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)]
+  ** Mercurial Distributed SCM (version 5.1.2+610-1cb7facd85b4)
+  ** Extensions loaded: fsmonitor
+  Traceback (most recent call last):
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\bin\hg", line 36, in <module>
 (esc)
+      dispatch.run()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 111, in run
 (esc)
+      status = dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 250, in dispatch
 (esc)
+      ret = _runcatch(req) or 0
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 424, in _runcatch
 (esc)
+      return _callcatch(ui, _runcatchfunc)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 433, in _callcatch
 (esc)
+      return scmutil.callcatch(ui, func)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 177, in callcatch
 (esc)
+      return func()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 414, in _runcatchfunc
 (esc)
+      return _dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1174, in _dispatch
 (esc)
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 862, in runcommand
 (esc)
+      ret = _runcommand(ui, options, cmd, d)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1185, in _runcommand
 (esc)
+      return cmdfunc()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1171, in <lambda>
 (esc)
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1843, in check
 (esc)
+      return func(*args, **kwargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\debugcommands.py", line 1696, in debuginstall
 (esc)
+      problems += handler(ui, fm)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\__init__.py", line 188, in debuginstall
 (esc)
+      v = c.command(b"version")
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\watchmanclient.py", line 108, in command
 (esc)
+      return self._command(*args)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\watchmanclient.py", line 97, in _command
 (esc)
+      return self._watchmanclient.query(*watchmanargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 996, in query
 (esc)
+      self._connect()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 863, in _connect
 (esc)
+      self.sockpath = self._resolvesockname()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\hgext\fsmonitor\pywatchman\__init__.py", line 838, in _resolvesockname
 (esc)
+      p = subprocess.Popen(pycompat.rapply(procutil.tonativestr, cmd),
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 86, in rapply
 (esc)
+      return _rapply(f, xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 59, in _rapply
 (esc)
+      return type(xs)(_rapply(f, x) for x in xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 59, in <genexpr>
 (esc)
+      return type(xs)(_rapply(f, x) for x in xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\pycompat.py", line 62, in _rapply
 (esc)
+      return f(xs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\encoding.py", line 223, in unifromlocal
 (esc)
+      return fromlocal(s).decode('utf-8')
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\encoding.py", line 201, in fromlocal
 (esc)
+      if isasciistr(s):
 (esc)
+  TypeError: a bytes-like object is required, not 'str'
 (esc)
+  [1]
 
 
 #if test-repo

test-issue1438.t

--- c:/hgdev/src/tests/test-issue1438.t
+++ c:/hgdev/src/tests/test-issue1438.t.err
@@ -5,19 +5,32 @@
   $ hg init
 
   $ ln -s foo link
+  ln: creating symbolic link `link' to `foo': $ENOENT$
+  [1]
   $ hg add link
+  link: $ENOENT$
+  [1]
   $ hg ci -mbad link
+  abort: link: $ENOENT$
+  [255]
   $ hg rm link
+  link: $ENOENT$
+  [1]
   $ hg ci -mok
+  nothing changed
+  [1]
   $ hg diff -g -r 0:1 > bad.patch
+  abort: unknown revision '1'!
+  [255]
 
   $ hg up 0
-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
 
   $ hg import --no-commit bad.patch
   applying bad.patch
+  abort: bad.patch: no diffs found
+  [255]
 
   $ hg status
-  R link
   ? bad.patch
 

test-issue4074.t

--- c:/hgdev/src/tests/test-issue4074.t
+++ c:/hgdev/src/tests/test-issue4074.t.err
@@ -27,3 +27,5 @@
 
   $ hg ci --time -m1
   time: real .* secs .user [0-9][.].* sys .* (re)
+  C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py:1040: DeprecationWarning: time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead
 (esc)
+    t = (t[0], t[1], t[2], t[3], time.clock())
 (esc)

test-keyword.t

--- c:/hgdev/src/tests/test-keyword.t
+++ c:/hgdev/src/tests/test-keyword.t.err
@@ -695,12 +695,11 @@
   $ ls -l i
   -rw-r--r--* (glob)
   $ head -1 i
-  expand $Id: a,v ef63ca68695b 1970/01/01 00:00:00 user $
+  a (no-eol)
   $ hg copy --after --verbose sym i
   copying sym to i
-  overwriting i shrinking keywords
   $ head -1 i
-  expand $Id$
+  a (no-eol)
   $ hg forget i
   $ rm i
 #endif
@@ -751,8 +750,9 @@
   $ cp symignored x
   $ hg copy --after --verbose symignored x
   copying symignored to x
+  overwriting x shrinking keywords
   $ head -n 1 x
-  expand $Id: a,v ef63ca68695b 1970/01/01 00:00:00 user $
+  expand $Id$
   $ hg forget x
   $ rm x
 

test-largefiles-misc.t

--- c:/hgdev/src/tests/test-largefiles-misc.t
+++ c:/hgdev/src/tests/test-largefiles-misc.t.err
@@ -197,6 +197,7 @@
   $ hg up -C >/dev/null
   $ test -f largelink
   $ test -L largelink
+  [1]
   $ cd ..
 
 #endif

test-lfconvert.t

--- c:/hgdev/src/tests/test-lfconvert.t
+++ c:/hgdev/src/tests/test-lfconvert.t.err
@@ -62,8 +62,6 @@
   skipping incorrectly formatted tag IncorrectlyFormattedTag!
   skipping incorrectly formatted id invalidhash
   no mapping for id 0123456789abcdef
-  abort: renamed/copied largefile large3 becomes symlink
-  [255]
 #endif
   $ cd bigfile-repo
   $ hg strip --no-backup 2

test-lfs-serve-access.t

--- c:/hgdev/src/tests/test-lfs-serve-access.t
+++ c:/hgdev/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-log.t

--- c:/hgdev/src/tests/test-log.t
+++ c:/hgdev/src/tests/test-log.t.err
@@ -2060,15 +2060,9 @@
   ... hg --encoding cp932 log --template '{rev}\n' -k 'ヂ'
   ... '''.encode('cp932')) and None
   $ sh < test.sh
-  0
   ====
-  1
   ====
-  2
-  0
   ====
-  3
-  1
 
   $ cd ..
 

test-mactext.t

--- c:/hgdev/src/tests/test-mactext.t
+++ c:/hgdev/src/tests/test-mactext.t.err
@@ -35,4 +35,4 @@
   $ hg cat f | "$PYTHON" print.py
   hello<LF>
   $ cat f | "$PYTHON" print.py
-  hello<CR>
+  hello<LF>
 (esc)

test-merge-tools.t

--- c:/hgdev/src/tests/test-merge-tools.t
+++ c:/hgdev/src/tests/test-merge-tools.t.err
@@ -1813,7 +1813,10 @@
 #if symlink
 
   $ ln -s symlink f
+  ln: creating symbolic link `f' to `symlink': $ENOENT$
+  [1]
   $ hg commit -qm 'f is symlink'
+  [1]
 
 #else
 
@@ -1841,12 +1844,9 @@
 #endif
 
   $ hg merge -r 2 --tool internal:merge
-  merging f
-  warning: internal :merge cannot merge symlinks for f
-  warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
-  0 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
-  [1]
+  abort: uncommitted changes
+  (use 'hg status' to list changes)
+  [255]
 
 Verify naming of temporary files and that extension is preserved:
 
@@ -1901,32 +1901,22 @@
   $ hg merge 9    > --config merge-patterns.b=:merge-other    > --config merge-patterns.re:[a-z]=:other
-  warning: check merge-patterns configurations, if ':merge-other' for binary file 'b' is unintentional
-  (see 'hg help merge-tools' for binary files capability)
-  merging b
-  warning: b looks like a binary file.
-  0 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
-  [1]
+  abort: merging with a working directory ancestor has no effect
+  [255]
   $ hg merge --abort -q
+  abort: no merge in progress
+  [255]
 
 (for ui.merge, ignored unintentionally)
 
   $ hg merge 9    > --config merge-tools.:other.binary=true    > --config ui.merge=:other
-  tool :other (for pattern b) can't handle binary
-  tool true can't handle binary
-  tool :other can't handle binary
-  tool false can't handle binary
-  no tool found to merge b
-  file 'b' needs to be resolved.
-  You can keep (l)ocal [working copy], take (o)ther [merge rev], or leave (u)nresolved.
-  What do you want to do? u
-  0 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
-  [1]
+  abort: merging with a working directory ancestor has no effect
+  [255]
   $ hg merge --abort -q
+  abort: no merge in progress
+  [255]
 
 With merge.strict-capability-check=true, binary files capability of
 internal merge tools is checked strictly.
@@ -1941,24 +1931,27 @@
   > --config merge-tools.:merge-other.binary=true    > --config merge-patterns.b=:merge-other    > --config merge-patterns.re:[a-z]=:other
-  tool :merge-other (for pattern b) can't handle binary
-  0 files updated, 1 files merged, 0 files removed, 0 files unresolved
-  (branch merge, don't forget to commit)
+  abort: merging with a working directory ancestor has no effect
+  [255]
   $ f --hexdump b
   b:
-  0000: 00 01 02 03                                     |....|
+  0000: 03 02 01 00                                     |....|
   $ hg merge --abort -q
+  abort: no merge in progress
+  [255]
 
 (for ui.merge)
 
   $ hg merge 9 --config merge.strict-capability-check=true    > --config ui.merge=:other
-  0 files updated, 1 files merged, 0 files removed, 0 files unresolved
-  (branch merge, don't forget to commit)
+  abort: merging with a working directory ancestor has no effect
+  [255]
   $ f --hexdump b
   b:
-  0000: 00 01 02 03                                     |....|
+  0000: 03 02 01 00                                     |....|
   $ hg merge --abort -q
+  abort: no merge in progress
+  [255]
 
 Check that the extra information is printed correctly
 
@@ -1969,16 +1962,9 @@
   >   --config ui.merge=testecho    >   --config ui.pre-merge-tool-output-template='
{label("extmerge.running_merge_tool", "Running merge tool for {path} ({toolpath}):")}
{separate("
", extmerge_section(local), extmerge_section(base), extmerge_section(other))}
'    >   --config 'templatealias.extmerge_section(sect)="- {pad("{sect.name} ({sect.label})", 20, left=True)}: {revset(sect.node)%"{rev}:{shortest(node,8)} {desc|firstline} {separate(" ", tags, bookmarks, branch)}"}"'
-  merging b
-  
-  Running merge tool for b ("*/bin/echo.exe"): (glob) (windows !)
+  abort: merging with a working directory ancestor has no effect
   Running merge tool for b (*/bin/echo): (glob) (no-windows !)
-  - local (working copy): 10:2d1f533d add binary file (#2) tip default
-  -          base (base): -1:00000000  default
-  -    other (merge rev): 9:1e7ad7d7 add binary file (#1) default
-  merge runs here ...
-  0 files updated, 1 files merged, 0 files removed, 0 files unresolved
-  (branch merge, don't forget to commit)
+  [255]
 
 Check that debugpicktool examines which merge tool is chosen for
 specified file as expected
@@ -2012,16 +1998,19 @@
 (-r REV causes checking files in specified revision)
 
   $ hg manifest -r 8
-  f.txt
+  b
+  f
   $ hg debugpickmergetool -r 8
-  f.txt = true
+  b = :prompt
+  f = true
 
 #if symlink
 
 (symlink causes chosing :prompt)
 
   $ hg debugpickmergetool -r 6d00b3726f6e
-  f = :prompt
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
 (by default, it is assumed that no internal merge tools has symlinks
 capability)
@@ -2032,13 +2021,15 @@
   > --config merge-patterns.f=:merge-other    > --config merge-patterns.re:[f]=:merge-local    > --config merge-patterns.re:[a-z]=:other
-  f = :prompt
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
   $ hg debugpickmergetool    > -r 6d00b3726f6e    > --config merge-tools.:other.symlink=true    > --config ui.merge=:other
-  f = :prompt
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
 (with strict-capability-check=true, actual symlink capabilities are
 checked striclty)
@@ -2049,18 +2040,21 @@
   > --config merge-patterns.f=:merge-other    > --config merge-patterns.re:[f]=:merge-local    > --config merge-patterns.re:[a-z]=:other
-  f = :other
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
   $ hg debugpickmergetool --config merge.strict-capability-check=true    > -r 6d00b3726f6e    > --config ui.merge=:other
-  f = :other
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
   $ hg debugpickmergetool --config merge.strict-capability-check=true    > -r 6d00b3726f6e    > --config merge-tools.:merge-other.symlink=true    > --config ui.merge=:merge-other
-  f = :prompt
+  abort: unknown revision '6d00b3726f6e'!
+  [255]
 
 #endif
 

test-merge1.t

--- c:/hgdev/src/tests/test-merge1.t
+++ c:/hgdev/src/tests/test-merge1.t.err
@@ -119,17 +119,17 @@
 symlinks to directories should be treated as regular files (issue5027)
   $ rm b
   $ ln -s 'This is file b2' b
+  ln: creating symbolic link `b' to `This is file b2': $ENOENT$
+  [1]
   $ hg merge 1
-  b: untracked file differs
-  abort: untracked files in working directory differ from files in requested revision
-  [255]
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  (branch merge, don't forget to commit)
 symlinks shouldn't be followed
   $ rm b
   $ echo This is file b1 > .hg/b
   $ ln -s .hg/b b
   $ hg merge 1
-  b: untracked file differs
-  abort: untracked files in working directory differ from files in requested revision
+  abort: outstanding uncommitted merge
   [255]
 
   $ rm b
@@ -138,28 +138,30 @@
 
 bad config
   $ hg merge 1 --config merge.checkunknown=x
-  abort: merge.checkunknown not valid ('x' is none of 'abort', 'ignore', 'warn')
+  abort: outstanding uncommitted merge
   [255]
 this merge should fail
   $ hg merge 1 --config merge.checkunknown=abort
-  b: untracked file differs
-  abort: untracked files in working directory differ from files in requested revision
+  abort: outstanding uncommitted merge
   [255]
 
 this merge should warn
   $ hg merge 1 --config merge.checkunknown=warn
-  b: replacing untracked file
-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
-  (branch merge, don't forget to commit)
+  abort: outstanding uncommitted merge
+  [255]
   $ cat b.orig
-  This is file b2
+  cat: b.orig: $ENOENT$
+  [1]
   $ hg up --clean 2
   0 files updated, 0 files merged, 1 files removed, 0 files unresolved
   $ mv b.orig b
+  mv: cannot stat `b.orig': $ENOENT$
+  [1]
 
 this merge should silently ignore
   $ cat b
-  This is file b2
+  cat: b: $ENOENT$
+  [1]
   $ hg merge 1 --config merge.checkunknown=ignore
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (branch merge, don't forget to commit)

test-mq-symlinks.t

--- c:/hgdev/src/tests/test-mq-symlinks.t
+++ c:/hgdev/src/tests/test-mq-symlinks.t.err
@@ -22,16 +22,17 @@
   $ ln -s b a
   $ hg qrefresh --git
   $ readlink.py a
-  a -> b
+  a -> a not a symlink
 (esc)
 
   $ hg qpop
   popping symlink.patch
   now at: base.patch
   $ hg qpush
   applying symlink.patch
+  patch symlink.patch is empty
   now at: symlink.patch
   $ readlink.py a
-  a -> b
+  a -> a not a symlink
 (esc)
 
 
 test updating a symlink
@@ -40,21 +41,19 @@
   $ ln -s c a
   $ hg qnew --git -f updatelink
   $ readlink.py a
-  a -> c
+  a -> a not a symlink
 (esc)
   $ hg qpop
   popping updatelink
   now at: symlink.patch
   $ hg qpush --debug
   applying updatelink
-  patching file a
-  committing files:
-  a
-  committing manifest
+  patch updatelink is empty
+  reusing manifest from p1 (no file change)
   committing changelog
   updating the branch cache
   now at: updatelink
   $ readlink.py a
-  a -> c
+  a -> a not a symlink
 (esc)
   $ hg st
 
 
@@ -96,17 +95,33 @@
 replace broken symlink with another broken symlink
 
   $ ln -s linka linka
+  ln: creating symbolic link `linka' to `linka': $ENOENT$
+  [1]
   $ hg add linka
+  linka: $ENOENT$
+  [1]
   $ hg qnew link
   $ hg mv linka linkb
+  linka: $ENOENT$
+  abort: no files to copy
+  [255]
   $ rm linkb
+  rm: cannot lstat `linkb': $ENOENT$
+  [1]
   $ ln -s linkb linkb
+  ln: creating symbolic link `linkb' to `linkb': $ENOENT$
+  [1]
   $ hg qnew movelink
   $ hg qpop
   popping movelink
   now at: link
   $ hg qpush
   applying movelink
+  patch movelink is empty
   now at: movelink
   $ readlink.py linkb
-  linkb -> linkb
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'linkb'
 (esc)
+  [1]

test-notify.t

UnicodeDecodeError('unicodeescape', b'--- c:/hgdev/src/tests/test-notify.t\n+++ c:/hgdev/src/tests/test-notify.t.err\n@@ -421,37 +421,29 @@\n   >   -m `"$PYTHON" -c \'print("\\xc3\\xa0\\xc3\\xa1\\xc3\\xa2\\xc3\\xa3\\xc3\\xa4")\'`\n   $ hg --traceback --cwd b --encoding utf-8 pull ../a | \\\n   >   "$PYTHON" $TESTTMP/filter.py\n-  pulling from ../a\n-  searching for changes\n-  adding changesets\n-  adding manifests\n-  adding file changes\n-  added 1 changesets with 1 changes to 1 files\n-  new changesets 0f25f9c22b4c\n-  MIME-Version: 1.0\n-  Content-Type: text/plain; charset="us-ascii"\n-  Content-Transfer-Encoding: 8bit\n-  X-Test: foo\n-  Date: * (glob)\n-  Subject: \\xc3\\xa0... (esc)\n-  From: test@test.com\n-  X-Hg-Notification: changeset 0f25f9c22b4c\n-  Message-Id: <*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  changeset 0f25f9c22b4c in b\n-  description: \\xc3\\xa0\\xc3\\xa1\\xc3\\xa2\\xc3\\xa3\\xc3\\xa4 (esc)\n-  diffstat:\n-   a |  1 + 1 files changed, 1 insertions(+), 0 deletions(-)\n-  \n-  diffs (7 lines):\n-  \n-  diff -r fccf66cd0c35 -r 0f25f9c22b4c a\n-  --- a/a\tThu Jan 01 00:00:03 1970 +0000\n-  +++ b/a\tThu Jan 01 00:00:00 1970 +0000\n-  @@ -1,2 +1,3 @@ a a\n-  +a\n-  (run \'hg update\' to get a working copy)\n+  error: incoming.notify hook raised an exception: \'ascii\' codec can\'t encode characters in position 42-51: ordinal not in range(128)\n+  Traceback (most recent call last):\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\hook.py", line 114, in pythonhook\n+      r = obj(ui=ui, repo=repo, hooktype=htype, **pycompat.strkwargs(args))\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\hgext\\notify.py", line 553, in hook\n+      n.send(ctx, count, data)\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\hgext\\notify.py", line 406, in send\n+      msg = mail.mimeencode(self.ui, payload, self.charsets, self.test)\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\mail.py", line 423, in mimeencode\n+      return mimetextqp(s, b\'plain\', cs)\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\mail.py", line 298, in mimetextqp\n+      msg.set_payload(body, cs)\n+    File "C:\\hgdev\\python37-x64\\Lib\\email\\message.py", line 315, in set_payload\n+      payload = payload.encode(charset.output_charset)\n+  UnicodeEncodeError: \'ascii\' codec can\'t encode characters in position 42-51: ordinal not in range(128)\n+  pulling from ../a\\r (esc)\n+  searching for changes\\r (esc)\n+  adding changesets\\r (esc)\n+  adding manifests\\r (esc)\n+  adding file changes\\r (esc)\n+  added 1 changesets with 1 changes to 1 files\\r (esc)\n+  new changesets 5e14b89ad3da\\r (esc)\n+  (run \'hg update\' to get a working copy)\\r (esc)\n \n long lines\n \n@@ -470,48 +462,31 @@\n   adding manifests\n   adding file changes\n   added 1 changesets with 1 changes to 1 files\n-  new changesets a846b5f6ebb7\n-  notify: sending 2 subscribers 1 changes\n+  new changesets fecd12eab950\n+  error: incoming.notify hook failed: decoding near \'nonononono\\xd1\\x84\': \'ascii\' codec can\'t decode byte 0xd1 in position 1328: ordinal not in range(128)! (esc)\n+  Traceback (most recent call last):\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\encoding.py", line 205, in fromlocal\n+      u = s.decode(_sysstr(encoding), _sysstr(encodingmode))\n+  UnicodeDecodeError: \'ascii\' codec can\'t decode byte 0xd1 in position 1328: ordinal not in range(128)\n+  \n+  During handling of the above exception, another exception occurred:\n+  \n+  Traceback (most recent call last):\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\hook.py", line 114, in pythonhook\n+      r = obj(ui=ui, repo=repo, hooktype=htype, **pycompat.strkwargs(args))\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\hgext\\notify.py", line 553, in hook\n+      n.send(ctx, count, data)\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\hgext\\notify.py", line 387, in send\n+      msg = p.parsestr(encoding.strfromlocal(data))\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\encoding.py", line 223, in unifromlocal\n+      return fromlocal(s).decode(\'utf-8\')\n+    File "C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\hgtests.lh83tfgb\\install\\lib\\python\\mercurial\\encoding.py", line 210, in fromlocal\n+      b"decoding near \'%s\': %s!" % (sub, pycompat.bytestr(inst))\n+  mercurial.error.Abort: b"decoding near \'nonononono\\xd1\\x84\': \'ascii\' codec can\'t decode byte 0xd1 in position 1328: ordinal not in range(128)!"\n   (run \'hg update\' to get a working copy)\n   $ "$PYTHON" $TESTTMP/filter.py < b/mbox\n-  From test@test.com ... ... .. ..:..:.. .... (re)\n-  MIME-Version: 1.0\n-  Content-Type: text/plain; charset="*" (glob)\n-  Content-Transfer-Encoding: quoted-printable\n-  X-Test: foo\n-  Date: * (glob)\n-  Subject: long line\n-  From: test@test.com\n-  X-Hg-Notification: changeset a846b5f6ebb7\n-  Message-Id: <hg.a846b5f6ebb7.*.*@*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  changeset a846b5f6ebb7 in b\n-  description: long line\n-  diffstat:\n-   a |  1 + 1 files changed, 1 insertions(+), 0 deletions(-)\n-  \n-  diffs (8 lines):\n-  \n-  diff -r 0f25f9c22b4c -r a846b5f6ebb7 a\n-  --- a/a\tThu Jan 01 00:00:00 1970 +0000\n-  +++ b/a\tThu Jan 01 00:00:00 1970 +0000\n-  @@ -1,3 +1,4 @@ a a a\n-  +nonononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nononononononononononononononononononononononononononononononononononononon=\n-  ononononononononononononononononononononononononononononononononononononono=\n-  nonononononononononononono=D1=84\n-  \n+  $TESTTMP.sh: line 130: b/mbox: $ENOENT$\n+  [1]\n  revset selection: send to address that matches branch and repo\n \n   $ cat << EOF >> $HGRCPATH\n@@ -540,7 +515,7 @@\n   adding manifests\n   adding file changes\n   added 1 changesets with 1 changes to 1 files\n-  new changesets f7e5aaed4080\n+  new changesets cfdce462aac0\\r (esc)\n   MIME-Version: 1.0\n   Content-Type: text/plain; charset="us-ascii"\n   Content-Transfer-Encoding: 7bit\n@@ -548,13 +523,13 @@\n   Date: * (glob)\n   Subject: test\n   From: test@test.com\n-  X-Hg-Notification: changeset f7e5aaed4080\n-  Message-Id: <hg.f7e5aaed4080.*.*@*> (glob)\n-  To: baz@test.com, foo@bar, notify@example.com\n-  \n-  changeset f7e5aaed4080 in b\n-  description: test\n-  (run \'hg update\' to get a working copy)\n+  X-Hg-Notification: changeset cfdce462aac0\\r (esc)\n+  Message-Id: <hg.cfdce462aac0.1571288089.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\\r (esc)\n+  To: baz@test.com, foo@bar, notify@example.com\\r (esc)\n+  \\r (esc)\n+  changeset cfdce462aac0 in b\\r (esc)\n+  description: test\\r (esc)\n+  (run \'hg update\' to get a working copy)\\r (esc)\n \n revset selection: don\'t send to address that waits for mails\n from different branch\n@@ -570,7 +545,7 @@\n   adding manifests\n   adding file changes\n   added 1 changesets with 0 changes to 0 files (+1 heads)\n-  new changesets 645eb6690ecf\n+  new changesets 424ada2957e5\\r (esc)\n   MIME-Version: 1.0\n   Content-Type: text/plain; charset="us-ascii"\n   Content-Transfer-Encoding: 7bit\n@@ -578,13 +553,13 @@\n   Date: * (glob)\n   Subject: test\n   From: test@test.com\n-  X-Hg-Notification: changeset 645eb6690ecf\n-  Message-Id: <hg.645eb6690ecf.*.*@*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  changeset 645eb6690ecf in b\n-  description: test\n-  (run \'hg heads\' to see heads)\n+  X-Hg-Notification: changeset 424ada2957e5\\r (esc)\n+  Message-Id: <hg.424ada2957e5.1571288091.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\\r (esc)\n+  To: baz@test.com, foo@bar\\r (esc)\n+  \\r (esc)\n+  changeset 424ada2957e5 in b\\r (esc)\n+  description: test\\r (esc)\n+  (run \'hg heads\' to see heads)\\r (esc)\n \n default template:\n \n@@ -599,13 +574,13 @@\n   Date: * (glob)\n   Subject: changeset in b: default template\n   From: test@test.com\n-  X-Hg-Notification: changeset 5cd4346eed47\n-  Message-Id: <hg.5cd4346eed47.*.*@*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  changeset 5cd4346eed47 in $TESTTMP/b\n-  details: http://test/b?cmd=changeset;node=5cd4346eed47\n-  description: default template\n+  X-Hg-Notification: changeset eec6221c8a43\\r (esc)\n+  Message-Id: <hg.eec6221c8a43.1571288092.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\\r (esc)\n+  To: baz@test.com, foo@bar\\r (esc)\n+  \\r (esc)\n+  changeset eec6221c8a43 in $TESTTMP\\\\b\\r (esc)\n+  details: http://test/b?cmd=changeset;node=eec6221c8a43\\r (esc)\n+  description: default template\\r (esc)\n \n with style:\n \n@@ -628,11 +603,11 @@\n   Date: * (glob)\n   Subject: with style\n   From: test@test.com\n-  X-Hg-Notification: changeset ec8d9d852f56\n-  Message-Id: <hg.ec8d9d852f56.*.*@*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  changeset ec8d9d852f56\n+  X-Hg-Notification: changeset 7955a56097d3\\r (esc)\n+  Message-Id: <hg.7955a56097d3.1571288093.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\\r (esc)\n+  To: baz@test.com, foo@bar\\r (esc)\n+  \\r (esc)\n+  changeset 7955a56097d3\\r (esc)\n \n with template (overrides style):\n \n@@ -649,13 +624,13 @@\n   Content-Type: text/plain; charset="us-ascii"\n   Content-Transfer-Encoding: 7bit\n   Date: * (glob)\n-  Subject: 14721b538ae3: with template\n-  From: test@test.com\n-  X-Hg-Notification: changeset 14721b538ae3\n-  Message-Id: <hg.14721b538ae3.*.*@*> (glob)\n-  To: baz@test.com, foo@bar\n-  \n-  with template\n+  Subject: 82bb0b6eb499: with template\\r (esc)\n+  From: test@test.com\n+  X-Hg-Notification: changeset 82bb0b6eb499\\r (esc)\n+  Message-Id: <hg.82bb0b6eb499.1571288093.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\\r (esc)\n+  To: baz@test.com, foo@bar\\r (esc)\n+  \\r (esc)\n+  with template\\r (esc)\n \n showfunc diff\n   $ cat <<EOF >> $HGRCPATH\n@@ -682,21 +657,21 @@\n   adding manifests\n   adding file changes\n   added 1 changesets with 1 changes to 1 files\n-  new changesets b86bc16ff894\n+  new changesets dfca204f4cee\n   MIME-Version: 1.0\n   Content-Type: text/plain; charset="us-ascii"\n   Content-Transfer-Encoding: 7bit\n   Date: * (glob)\n   Subject: addfunction\n   From: test@test.com\n-  X-Hg-Notification: changeset b86bc16ff894\n-  Message-Id: <hg.b86bc16ff894.*.*@*> (glob)\n+  X-Hg-Notification: changeset dfca204f4cee\n+  Message-Id: <hg.dfca204f4cee.1571288094.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\n   To: baz@test.com, foo@bar\n   \n-  changeset b86bc16ff894\n+  changeset dfca204f4cee\n   diffs (11 lines):\n   \n-  diff -r 14721b538ae3 -r b86bc16ff894 f1\n+  diff -r 82bb0b6eb499 -r dfca204f4cee f1\n   --- /dev/null\tThu Jan 01 00:00:00 1970 +0000\n   +++ b/f1\tThu Jan 01 00:00:00 1970 +0000\n   @@ -0,0 +1,7 @@\n@@ -725,21 +700,21 @@\n   adding manifests\n   adding file changes\n   added 1 changesets with 1 changes to 1 files\n-  new changesets e81040e9838c\n+  new changesets 23ea51ca9d20\n   MIME-Version: 1.0\n   Content-Type: text/plain; charset="us-ascii"\n   Content-Transfer-Encoding: 7bit\n   Date: * (glob)\n   Subject: changefunction\n   From: test@test.com\n-  X-Hg-Notification: changeset e81040e9838c\n-  Message-Id: <hg.e81040e9838c.*.*@*> (glob)\n+  X-Hg-Notification: changeset 23ea51ca9d20\n+  Message-Id: <hg.23ea51ca9d20.1571288095.-4128619785606323472@EC2AMAZ-CUILFNU.us-west-2.compute.internal>\n   To: baz@test.com, foo@bar\n   \n-  changeset e81040e9838c\n+  changeset 23ea51ca9d20\n   diffs (12 lines):\n   \n-  diff -r b86bc16ff894 -r e81040e9838c f1\n+  diff -r dfca204f4cee -r 23ea51ca9d20 f1\n   --- a/f1\tThu Jan 01 00:00:00 1970 +0000\n   +++ b/f1\tThu Jan 01 00:00:00 1970 +0000\n   @@ -2,6 +2,6 @@ int main() {\n', 1336, 1338, 'truncated \\UXXXXXXXX escape') decoding diff, sorry

test-obsmarker-template.t

--- c:/hgdev/src/tests/test-obsmarker-template.t
+++ c:/hgdev/src/tests/test-obsmarker-template.t.err
@@ -2643,9 +2643,9 @@
 local encoding since the command is supposed to show unmodified content:
 
   $ HGENCODING=latin-1 hg debugobsolete
-  5f66a482f0bb2fcaccfc215554ad5eb9f40b50f5 718c0d00cee1429bdb73064e0d88908c601507a8 0 (Thu Jan 01 00:00:00 1970 +0000) {'ef1': '9', 'note': 'tèst2', 'operation': 'amend', 'user': 'test'}
-  718c0d00cee1429bdb73064e0d88908c601507a8 1132562159b35bb27e1d6b80c80ee94a1659a4da 0 (Thu Jan 01 00:00:00 1970 +0000) {'ef1': '1', 'operation': 'amend', 'user': 'tèst2'}
-  8f82db6f991db367fdbb3b6dba5e187ecc3ebd96 0 (Thu Jan 01 00:00:00 1970 +0000) {'user': 'tèst2'}
+  5f66a482f0bb2fcaccfc215554ad5eb9f40b50f5 718c0d00cee1429bdb73064e0d88908c601507a8 0 (Thu Jan 01 00:00:00 1970 +0000) {'ef1': '9', 'note': 'tèst2', 'operation': 'amend', 'user': 'test'}
+  718c0d00cee1429bdb73064e0d88908c601507a8 1132562159b35bb27e1d6b80c80ee94a1659a4da 0 (Thu Jan 01 00:00:00 1970 +0000) {'ef1': '1', 'operation': 'amend', 'user': 'tèst2'}
+  8f82db6f991db367fdbb3b6dba5e187ecc3ebd96 0 (Thu Jan 01 00:00:00 1970 +0000) {'user': 'tèst2'}
 
 metadata should be converted back to local encoding when displaying:
 

test-origbackup-conflict.t

--- c:/hgdev/src/tests/test-origbackup-conflict.t
+++ c:/hgdev/src/tests/test-origbackup-conflict.t.err
@@ -82,18 +82,20 @@
   $ mkdir ../sym-link-target
 #if symlink
   $ ln -s ../../../sym-link-target b
+  ln: creating symbolic link `b' to `../../../sym-link-target': $ENOENT$
+  [1]
   $ ln -s ../../../sym-link-target d
+  ln: creating symbolic link `d' to `../../../sym-link-target': $ENOENT$
+  [1]
 #else
   $ touch b d
 #endif
   $ hg up b1
-  b: replacing untracked file
-  d: replacing untracked file
   2 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark b1)
 #if symlink
   $ readlink.py .hg/origbackups/b
-  .hg/origbackups/b -> ../../../sym-link-target
+  .hg/origbackups/b -> .hg/origbackups/b not a symlink
 (esc)
 #endif
 
 Perform an update that causes b/c and d to be backed up again - b/c should not go into the target dir
@@ -107,8 +109,6 @@
   b/c: replacing untracked file
   d: replacing untracked file
   getting b/c
-  creating directory: $TESTTMP/repo/.hg/origbackups/b
-  removing conflicting file: $TESTTMP/repo/.hg/origbackups/b
   getting d
   2 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark c1)

test-patchbomb.t

--- c:/hgdev/src/tests/test-patchbomb.t
+++ c:/hgdev/src/tests/test-patchbomb.t.err
@@ -2565,7 +2565,7 @@
   User-Agent: Mercurial-patchbomb/* (glob)
   Date: Tue, 01 Jan 1980 00:01:00 +0000
   From: quux
-  To: bar@xn--nicode-2ya.com
+  To: bar@xn--14nicode-qza5441f.com
   
   # HG changeset patch
   # User test

test-pathconflicts-merge.t

--- c:/hgdev/src/tests/test-pathconflicts-merge.t
+++ c:/hgdev/src/tests/test-pathconflicts-merge.t.err
@@ -26,9 +26,14 @@
 #if symlink
   $ mkdir a
   $ ln -s c a/b
+  ln: creating symbolic link `a/b' to `c': $ENOENT$
+  [1]
   $ hg add a/b
+  a/b: $ENOENT$
+  [1]
   $ hg commit -m "link"
-  created new head
+  nothing changed
+  [1]
 #else
   $ hg import -q --bypass - <<EOF
   > # HG changeset patch
@@ -47,7 +52,7 @@
 
   $ hg bookmark -i link
   $ hg up 0
-  0 files updated, 0 files merged, 1 files removed, 0 files unresolved
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ mkdir -p a/b/c
   $ echo 2 > a/b/c/d
   $ hg add a/b/c/d
@@ -85,35 +90,34 @@
 Merge - local symlink conflicts with remote directory
 
   $ hg up link
-  1 files updated, 0 files merged, 1 files removed, 0 files unresolved
+  0 files updated, 0 files merged, 1 files removed, 0 files unresolved
   (activating bookmark link)
   $ hg bookmark -i
   $ hg merge dir
-  a/b: path conflict - a file or link has the same name as a directory
-  the local file has been renamed to a/b~2ea68033e3be
-  resolve manually then use 'hg resolve --mark a/b'
-  1 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
+  abort: nothing to merge
+  (use 'hg update' or check 'hg heads')
+  [255]
+  $ hg status
+  $ hg resolve --list
+  $ hg resolve --all
+  abort: resolve command not applicable when not merging
+  [255]
+  $ hg mv a/b~2ea68033e3be a/b.old
+  a/b~2ea68033e3be: $ENOTDIR$
+  abort: no files to copy
+  [255]
+  $ hg resolve --mark a/b
+  abort: resolve command not applicable when not merging
+  [255]
+  $ hg resolve --list
+  $ hg commit -m "merge link and dir (renamed link)"
+  nothing changed
   [1]
-  $ hg status
-  M a/b/c/d
-  A a/b~2ea68033e3be
-  R a/b
-  $ hg resolve --list
-  P a/b
-  $ hg resolve --all
-  a/b: path conflict must be resolved manually
-  $ hg mv a/b~2ea68033e3be a/b.old
-  $ hg resolve --mark a/b
-  (no more unresolved files)
-  $ hg resolve --list
-  R a/b
-  $ hg commit -m "merge link and dir (renamed link)"
 
 Merge - local directory conflicts with remote file or link
 
   $ hg up dir
-  0 files updated, 0 files merged, 1 files removed, 0 files unresolved
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark dir)
   $ hg bookmark -i
   $ hg merge file
@@ -140,22 +144,28 @@
   2
   $ hg commit -m "merge file2 (copytrace tracked rename)"
   $ hg merge link
-  a/b: path conflict - a file or link has the same name as a directory
-  the remote file has been renamed to a/b~2ea68033e3be
-  resolve manually then use 'hg resolve --mark a/b'
-  1 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges or 'hg merge --abort' to abandon
-  [1]
+  abort: merging with a working directory ancestor has no effect
+  [255]
   $ hg mv a/b~2ea68033e3be a/b.old
+  a/b~2ea68033e3be: $ENOENT$
+  abort: no files to copy
+  [255]
 
 #if symlink
   $ readlink.py a/b.old
-  a/b.old -> c
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'a/b.old'
 (esc)
+  [1]
 #else
   $ cat a/b.old
   c (no-eol)
 #endif
 
   $ hg resolve --mark a/b
-  (no more unresolved files)
+  abort: resolve command not applicable when not merging
+  [255]
   $ hg commit -m "merge link (rename link)"
+  nothing changed
+  [1]

test-pathconflicts-update.t

--- c:/hgdev/src/tests/test-pathconflicts-update.t
+++ c:/hgdev/src/tests/test-pathconflicts-update.t.err
@@ -25,15 +25,20 @@
   $ mkdir a
 #if symlink
   $ ln -s c a/b
+  ln: creating symbolic link `a/b' to `c': $ENOENT$
+  [1]
 #else
   $ touch a/b
 #endif
   $ hg add a/b
+  a/b: $ENOENT$
+  [1]
   $ hg commit -m "link"
-  created new head
+  nothing changed
+  [1]
   $ hg bookmark -i link
   $ hg up 0
-  0 files updated, 0 files merged, 1 files removed, 0 files unresolved
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ mkdir -p a/b/c
   $ echo 2 > a/b/c/d
   $ hg add a/b/c/d
@@ -64,22 +69,27 @@
   $ mkdir a
 #if symlink
   $ ln -s x a/b
+  ln: creating symbolic link `a/b' to `x': $ENOENT$
+  [1]
 #else
   $ touch a/b
 #endif
   $ hg up dir
-  a/b: untracked file conflicts with directory
-  abort: untracked files in working directory differ from files in requested revision
-  [255]
-  $ hg up dir --config merge.checkunknown=warn
-  a/b: replacing untracked file
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark dir)
+  $ hg up dir --config merge.checkunknown=warn
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
 #if symlink
   $ readlink.py a/b.orig
-  a/b.orig -> x
+  Traceback (most recent call last):
 (esc)
+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>
 (esc)
+      print(f, '->', os.readlink(f))
 (esc)
+  FileNotFoundError: [WinError 2] $ENOENT$: 'a/b.orig'
 (esc)
+  [1]
 #endif
   $ rm a/b.orig
+  rm: cannot lstat `a/b.orig': $ENOENT$
+  [1]
 
 Update - local directory conflicts with remote file
 
@@ -105,18 +115,16 @@
   $ mkdir -p a/b/c
   $ echo 9 > a/b/c/d
   $ hg up link
-  a/b: untracked directory conflicts with file
-  abort: untracked files in working directory differ from files in requested revision
-  [255]
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  (activating bookmark link)
   $ hg up link --config merge.checkunknown=warn
-  a/b: replacing untracked files in directory
-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
-  (activating bookmark link)
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
 #if symlink
   $ readlink.py a/b
-  a/b -> c
+  a/b -> a/b not a symlink
 (esc)
 #endif
   $ test -d a/b.orig
+  [1]
   $ rm -rf a/b.orig
 
 Update - local renamed file conflicts with remote directory
@@ -124,37 +132,43 @@
   $ hg up -q 0
   $ hg mv base a
   $ hg status -C
-  A a
+  A a/base
     base
   R base
+  ? a/b/c/d
   $ hg up --check dir
   abort: uncommitted changes
   [255]
   $ hg up dir
-  a: path conflict - a file or link has the same name as a directory
-  the local file has been renamed to a~d20a80d4def3
-  resolve manually then use 'hg resolve --mark a'
-  1 files updated, 0 files merged, 0 files removed, 1 files unresolved
-  use 'hg resolve' to retry unresolved file merges
-  (activating bookmark dir)
-  [1]
+  a/b/c/d: untracked file differs
+  abort: untracked files in working directory differ from files in requested revision
+  [255]
   $ hg status -C
-  A a~d20a80d4def3
+  A a/base
     base
   R base
+  ? a/b/c/d
   $ hg resolve --list
-  P a
   $ hg up --clean -q 0
 
 Update clean - local directory conflicts with changed remote file
 
   $ hg up -q file
+  a/b: untracked directory conflicts with file
+  abort: untracked files in working directory differ from files in requested revision
+  [255]
   $ rm a/b
+  rm: cannot remove directory `a/b': Is a directory
+  [1]
   $ mkdir a/b
+  mkdir: cannot create directory `a/b': File exists
+  [1]
   $ echo 9 > a/b/c
+  $TESTTMP.sh: line 143: a/b/c: File exists
+  [1]
   $ hg up file2 --check --config merge.checkunknown=warn
-  abort: uncommitted changes
-  [255]
-  $ hg up file2 --clean
+  a/b: replacing untracked files in directory
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark file2)
+  $ hg up file2 --clean
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved

test-push-race.t#strict

--- c:/hgdev/src/tests/test-push-race.t
+++ c:/hgdev/src/tests/test-push-race.t#strict.err
@@ -205,6 +205,7 @@
   remote: added 1 changesets with 1 changes to 1 files
 
   $ release $TESTTMP/watchfile
+  touch: setting times of `C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\child8\test-push-race.t-strict/watchfile': Permission denied
 
 Check the result of the push
 
@@ -293,6 +294,7 @@
   remote: added 1 changesets with 1 changes to 1 files
 
   $ release $TESTTMP/watchfile
+  touch: setting times of `C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\child8\test-push-race.t-strict/watchfile': Permission denied
 
 Check the result of the push
 

test-revset.t

--- c:/hgdev/src/tests/test-revset.t
+++ c:/hgdev/src/tests/test-revset.t.err
@@ -308,7 +308,7 @@
   abort: unknown revision '-a'!
   [255]
   $ try é
-  (symbol 'é')
+  (symbol 'é')
   * set:
   <baseset [9]>
   9
@@ -1847,7 +1847,6 @@
   $ log 'id(2785f51eece)'
   0
   $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532c)'
-  8
   $ log 'id(d5d0dcbdc4a)'
   $ log 'id(d5d0dcbdc4w)'
   $ log 'id(d5d0dcbdc4d9ff5dbb2d336f32f0bb561c1a532d)'

test-revset2.t

--- c:/hgdev/src/tests/test-revset2.t
+++ c:/hgdev/src/tests/test-revset2.t.err
@@ -804,13 +804,13 @@
 (real pair)
 
   $ hg diff -r 'tip^^' -r 'tip'
-  diff -r 2326846efdab -r d2e607fcf9e4 .hgtags
+  diff -r 2326846efdab -r 03e2075a498e .hgtags
   --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
   +++ b/.hgtags	Thu Jan 01 00:00:00 1970 +0000
   @@ -0,0 +1,1 @@
   +d5e6808a86077d6f5c1ff626d4352d01da7d2a1f 1.0
   $ hg diff -r 'tip^^::tip'
-  diff -r 2326846efdab -r d2e607fcf9e4 .hgtags
+  diff -r 2326846efdab -r 03e2075a498e .hgtags
   --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
   +++ b/.hgtags	Thu Jan 01 00:00:00 1970 +0000
   @@ -0,0 +1,1 @@
@@ -824,13 +824,13 @@
 (single rev that does not looks like a range)
 
   $ hg diff -r 'tip^::tip^ or tip^'
-  diff -r d5d0dcbdc4d9 .hgtags
+  diff -r 6fa93c91b5c8 .hgtags
   --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
   +++ b/.hgtags	* (glob)
   @@ -0,0 +1,1 @@
   +d5e6808a86077d6f5c1ff626d4352d01da7d2a1f 1.0
   $ hg diff -r 'tip^ or tip^'
-  diff -r d5d0dcbdc4d9 .hgtags
+  diff -r 6fa93c91b5c8 .hgtags
   --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
   +++ b/.hgtags	* (glob)
   @@ -0,0 +1,1 @@
@@ -1242,8 +1242,8 @@
   5:904fa392b941
   6:d5e6808a8607
   7:586353d483b3
-  8:d5d0dcbdc4d9
-  9:d2e607fcf9e4
+  8:6fa93c91b5c8
+  9:03e2075a498e
 
   $ hg log -qr d5e: --config revsetalias.d5e="0"
   0:2785f51eece5
@@ -1254,8 +1254,8 @@
   5:904fa392b941
   6:d5e6808a8607
   7:586353d483b3
-  8:d5d0dcbdc4d9
-  9:d2e607fcf9e4
+  8:6fa93c91b5c8
+  9:03e2075a498e
 
   $ hg log -qr :d5e --config revsetalias.d5e="9"
   0:2785f51eece5
@@ -1266,14 +1266,14 @@
   5:904fa392b941
   6:d5e6808a8607
   7:586353d483b3
-  8:d5d0dcbdc4d9
-  9:d2e607fcf9e4
+  8:6fa93c91b5c8
+  9:03e2075a498e
 
   $ hg log -qr d5e:
   6:d5e6808a8607
   7:586353d483b3
-  8:d5d0dcbdc4d9
-  9:d2e607fcf9e4
+  8:6fa93c91b5c8
+  9:03e2075a498e
 
   $ hg log -qr :d5e
   0:2785f51eece5
@@ -1471,8 +1471,8 @@
 
   $ echo 'cat2n2($1, $2, $3, $4) = $1 ## $2 or $3 ## $4~2' >> .hg/hgrc
   $ log "cat2n2(2785f5, 1eece5, d2e607, fcf9e4)"
-  0
-  4
+  abort: unknown revision 'd2e607fcf9e4'!
+  [255]
 
   $ cd ..
 
@@ -1556,19 +1556,11 @@
   > '''.encode('cp932'))
   > EOF
   $ sh < test.sh
-  0
   ====
-  1
   ====
-  2
   ====
-  3
   ====
-  0
-  2
   ====
-  1
-  3
 
 test error message of bad revset
   $ hg log -r 'foo\'

test-run-tests.t

--- c:/hgdev/src/tests/test-run-tests.t
+++ c:/hgdev/src/tests/test-run-tests.t.err
@@ -23,10 +23,9 @@
 #if symlink
   $ ln -s `which true` hg
   $ "$PYTHON" $TESTDIR/run-tests.py --with-hg=./hg
-  warning: --with-hg should specify an hg script
-  running 0 tests using 0 parallel processes 
-  
-  # Ran 0 tests, 0 skipped, 0 failed.
+  running 0 tests using 0 parallel processes 
 (esc)
+  
 (esc)
+  # Ran 0 tests, 0 skipped, 0 failed.
 (esc)
   $ rm hg
 #endif
 

test-share.t

--- c:/hgdev/src/tests/test-share.t
+++ c:/hgdev/src/tests/test-share.t.err
@@ -40,9 +40,7 @@
   [1]
   $ ls -1 .hg/wcache || true
   checkisexec (execbit !)
-  checklink (symlink !)
-  checklink-target (symlink !)
-  manifestfulltextcache (reporevlogstore !)
+  manifestfulltextcache
   $ ls -1 ../repo1/.hg/cache
   branch2-served
   rbc-names-v1

test-shelve.t#phasebased

--- c:/hgdev/src/tests/test-shelve.t
+++ c:/hgdev/src/tests/test-shelve.t#phasebased.err
@@ -545,11 +545,18 @@
 
   $ rm a/a
   $ ln -s foo a/a
+  ln: creating symbolic link `a/a' to `foo': $ENOENT$
+  [1]
   $ hg shelve -q -n symlink a/a
+  abort: a/a: file not found!
+  [255]
   $ hg status a/a
+  ! a/a
   $ hg unshelve -q -n symlink
+  abort: shelved change 'symlink' not found
+  [255]
   $ hg status a/a
-  M a/a
+  ! a/a
   $ hg revert a/a
 
 #else
@@ -581,7 +588,7 @@
   rebasing shelved changes
   merging a/a
   $ hg parents -q
-  (4|13):33f7f61e6c5e (re)
+  12:33f7f61e6c5e
   $ hg shelve -l
   default         (*)* changes to: second (glob)
   $ hg status
@@ -604,7 +611,7 @@
   merging a/a
   note: unshelved changes already existed in the working copy
   $ hg parents -q
-  (4|13):33f7f61e6c5e (re)
+  12:33f7f61e6c5e
   $ hg shelve -l
   $ hg status
   A foo/foo
@@ -641,16 +648,16 @@
 
   $ hg bookmark test
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg shelve
   shelved as test
   0 files updated, 0 files merged, 1 files removed, 0 files unresolved
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg unshelve
   unshelving change 'test'
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
 
 shelve should still work even if mq is disabled
 
@@ -660,11 +667,11 @@
   $ hg --config extensions.mq=! shelve --list
   test            (*)* changes to: create conflict (glob)
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg --config extensions.mq=! unshelve
   unshelving change 'test'
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
 
 Recreate some conflict again
 
@@ -679,7 +686,7 @@
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   (activating bookmark test)
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg unshelve
   unshelving change 'default'
   rebasing shelved changes
@@ -688,7 +695,7 @@
   unresolved conflicts (see 'hg resolve', then 'hg unshelve --continue')
   [1]
   $ hg bookmark
-     test                      (4|13):33f7f61e6c5e (re)
+     test                      12:33f7f61e6c5e
 
 Test that resolving all conflicts in one direction (so that the rebase
 is a no-op), works (issue4398)
@@ -702,13 +709,13 @@
   note: unshelved changes already existed in the working copy
   unshelve of 'default' complete
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg diff
   $ hg status
   ? a/a.orig
   ? foo/foo
   $ hg summary
-  parent: (4|13):33f7f61e6c5e tip (re)
+  parent: 12:33f7f61e6c5e tip
    create conflict
   branch: default
   bookmarks: *test
@@ -790,14 +797,14 @@
   M a/a
   ? foo/foo
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ hg unshelve
   unshelving change 'test'
   temporarily committing pending changes (restore with 'hg unshelve --abort')
   rebasing shelved changes
   merging a/a
   $ hg bookmark
-   \* test                      (4|13):33f7f61e6c5e (re)
+   * test                      12:33f7f61e6c5e
   $ cat a/a
   a
   a
@@ -997,24 +1004,24 @@
 
   $ sh $TESTTMP/checkvisibility.sh before-unshelving
   ==== before-unshelving:
-  VISIBLE (5|19):703117a2acfb (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 18:703117a2acfb
+  ACTUAL  18:703117a2acfb
   ====
 
   $ hg unshelve --keep default
   temporarily committing pending changes (restore with 'hg unshelve --abort')
   rebasing shelved changes
   ==== preupdate:
-  VISIBLE (6|20):54c00d20fb3f (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 19:54c00d20fb3f
+  ACTUAL  18:703117a2acfb
   ====
   ==== preupdate:
-  VISIBLE (8|21):8efe6f7537dc (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 20:8efe6f7537dc
+  ACTUAL  18:703117a2acfb
   ====
   ==== preupdate:
-  VISIBLE (6|20):54c00d20fb3f (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 19:54c00d20fb3f
+  ACTUAL  18:703117a2acfb
   ====
 
   $ cat >> .hg/hgrc <<EOF
@@ -1024,8 +1031,8 @@
 
   $ sh $TESTTMP/checkvisibility.sh after-unshelving
   ==== after-unshelving:
-  VISIBLE (5|19):703117a2acfb (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 18:703117a2acfb
+  ACTUAL  18:703117a2acfb
   ====
 
 == test visibility to external update hook
@@ -1041,25 +1048,25 @@
 
   $ sh $TESTTMP/checkvisibility.sh before-unshelving
   ==== before-unshelving:
-  VISIBLE (5|19):703117a2acfb (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 18:703117a2acfb
+  ACTUAL  18:703117a2acfb
   ====
 
   $ hg unshelve --keep default
   temporarily committing pending changes (restore with 'hg unshelve --abort')
   rebasing shelved changes
   ==== update:
-  VISIBLE (6|20):54c00d20fb3f (re)
-  VISIBLE 1?7:492ed9d705e5 (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 19:54c00d20fb3f
+  VISIBLE 16:492ed9d705e5
+  ACTUAL  18:703117a2acfb
   ====
   ==== update:
-  VISIBLE (6|20):54c00d20fb3f (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 19:54c00d20fb3f
+  ACTUAL  18:703117a2acfb
   ====
   ==== update:
-  VISIBLE (5|19):703117a2acfb (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 18:703117a2acfb
+  ACTUAL  18:703117a2acfb
   ====
 
   $ cat >> .hg/hgrc <<EOF
@@ -1069,8 +1076,8 @@
 
   $ sh $TESTTMP/checkvisibility.sh after-unshelving
   ==== after-unshelving:
-  VISIBLE (5|19):703117a2acfb (re)
-  ACTUAL  (5|19):703117a2acfb (re)
+  VISIBLE 18:703117a2acfb
+  ACTUAL  18:703117a2acfb
   ====
 
   $ cd ..
@@ -1084,31 +1091,31 @@
   > EOF
 
   $ hg bookmarks -R repo
-     test                      (4|13):33f7f61e6c5e (re)
+     test                      12:33f7f61e6c5e
   $ hg share -B repo share
   updating working directory
   6 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ cd share
 
   $ hg bookmarks
-     test                      (4|13):33f7f61e6c5e (re)
+     test                      12:33f7f61e6c5e
   $ hg bookmarks foo
   $ hg bookmarks
-   \* foo                       (5|19):703117a2acfb (re)
-     test                      (4|13):33f7f61e6c5e (re)
+   * foo                       18:703117a2acfb
+     test                      12:33f7f61e6c5e
   $ echo x >> x
   $ hg shelve
   shelved as foo
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ hg bookmarks
-   \* foo                       (5|19):703117a2acfb (re)
-     test                      (4|13):33f7f61e6c5e (re)
+   * foo                       18:703117a2acfb
+     test                      12:33f7f61e6c5e
 
   $ hg unshelve
   unshelving change 'foo'
   $ hg bookmarks
-   \* foo                       (5|19):703117a2acfb (re)
-     test                      (4|13):33f7f61e6c5e (re)
+   * foo                       18:703117a2acfb
+     test                      12:33f7f61e6c5e
 
   $ cd ..
 

test-shelve.t#stripbased

--- c:/hgdev/src/tests/test-shelve.t
+++ c:/hgdev/src/tests/test-shelve.t#stripbased.err
@@ -545,11 +545,18 @@
 
   $ rm a/a
   $ ln -s foo a/a
+  ln: creating symbolic link `a/a' to `foo': $ENOENT$
+  [1]
   $ hg shelve -q -n symlink a/a
+  abort: a/a: file not found!
+  [255]
   $ hg status a/a
+  ! a/a
   $ hg unshelve -q -n symlink
+  abort: shelved change 'symlink' not found
+  [255]
   $ hg status a/a
-  M a/a
+  ! a/a
   $ hg revert a/a
 
 #else

test-ssh-bundle1.t#sshv1

--- c:/hgdev/src/tests/test-ssh-bundle1.t
+++ c:/hgdev/src/tests/test-ssh-bundle1.t#sshv1.err
@@ -512,7 +512,7 @@
   Got arguments 1:user@dummy 2:hg -R doesnotexist serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/local serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/local' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   changegroup-in-remote hook: HG_HOOKNAME=changegroup
   HG_HOOKTYPE=changegroup

test-ssh-bundle1.t#sshv2

--- c:/hgdev/src/tests/test-ssh-bundle1.t
+++ c:/hgdev/src/tests/test-ssh-bundle1.t#sshv2.err
@@ -512,7 +512,7 @@
   Got arguments 1:user@dummy 2:hg -R doesnotexist serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/local serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/local' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   changegroup-in-remote hook: HG_HOOKNAME=changegroup
   HG_HOOKTYPE=changegroup

test-ssh-proto-unbundle.t

--- c:/hgdev/src/tests/test-ssh-proto-unbundle.t
+++ c:/hgdev/src/tests/test-ssh-proto-unbundle.t.err
@@ -902,11 +902,11 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 148:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     printed line

+  e> read(-1) -> 149:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     printed line

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.fail hook failed

@@ -957,11 +957,11 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 148:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     printed line

+  e> read(-1) -> 149:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     printed line

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.fail hook failed

@@ -1026,13 +1026,13 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 173:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     print 1

+  e> read(-1) -> 175:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     print 1

   e>     ui.write 1

-  e>     print 2

+  e>     print 2

   e>     ui.write 2

   e>     transaction abort!

   e>     rollback completed

@@ -1084,13 +1084,13 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 173:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     print 1

+  e> read(-1) -> 175:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     print 1

   e>     ui.write 1

-  e>     print 2

+  e>     print 2

   e>     ui.write 2

   e>     transaction abort!

   e>     rollback completed

@@ -1156,14 +1156,14 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 171:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     stdout 1

-  e>     stderr 1

-  e>     stdout 2

-  e>     stderr 2

+  e> read(-1) -> 175:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     stdout 1

+  e>     stderr 1

+  e>     stdout 2

+  e>     stderr 2

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.fail hook failed

@@ -1214,14 +1214,14 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 171:
-  e>     adding changesets

-  e>     adding manifests

-  e>     adding file changes

-  e>     stdout 1

-  e>     stderr 1

-  e>     stdout 2

-  e>     stderr 2

+  e> read(-1) -> 175:
+  e>     adding changesets

+  e>     adding manifests

+  e>     adding file changes

+  e>     stdout 1

+  e>     stderr 1

+  e>     stdout 2

+  e>     stderr 2

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.fail hook failed

@@ -1687,7 +1687,7 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 228:
+  e> read(-1) -> 232:
   e>     adding changesets

   e>     adding manifests

   e>     adding file changes

@@ -1695,10 +1695,10 @@
   e>     shell stderr 1

   e>     shell stdout 2

   e>     shell stderr 2

-  e>     stdout 1

-  e>     stderr 1

-  e>     stdout 2

-  e>     stderr 2

+  e>     stdout 1

+  e>     stderr 1

+  e>     stdout 2

+  e>     stderr 2

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.b hook failed

@@ -1749,7 +1749,7 @@
   o> read(1) -> 1: 0
   result: 0
   remote output: 
-  e> read(-1) -> 228:
+  e> read(-1) -> 232:
   e>     adding changesets

   e>     adding manifests

   e>     adding file changes

@@ -1757,10 +1757,10 @@
   e>     shell stderr 1

   e>     shell stdout 2

   e>     shell stderr 2

-  e>     stdout 1

-  e>     stderr 1

-  e>     stdout 2

-  e>     stderr 2

+  e>     stdout 1

+  e>     stderr 1

+  e>     stdout 2

+  e>     stderr 2

   e>     transaction abort!

   e>     rollback completed

   e>     abort: pretxnchangegroup.b hook failed

test-ssh.t#sshv1

--- c:/hgdev/src/tests/test-ssh.t
+++ c:/hgdev/src/tests/test-ssh.t#sshv1.err
@@ -553,7 +553,7 @@
 
   $ cat dummylog
   Got arguments 1:user@dummy 2:hg -R nonexistent serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/nonexistent serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/nonexistent' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local-stream serve --stdio (no-reposimplestore !)
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio (no-reposimplestore !)
@@ -561,7 +561,7 @@
   Got arguments 1:user@dummy 2:hg -R doesnotexist serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/local serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/local' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   changegroup-in-remote hook: HG_BUNDLE2=1
   HG_HOOKNAME=changegroup

test-ssh.t#sshv2

--- c:/hgdev/src/tests/test-ssh.t
+++ c:/hgdev/src/tests/test-ssh.t#sshv2.err
@@ -553,7 +553,7 @@
 
   $ cat dummylog
   Got arguments 1:user@dummy 2:hg -R nonexistent serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/nonexistent serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/nonexistent' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local-stream serve --stdio (no-reposimplestore !)
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio (no-reposimplestore !)
@@ -561,7 +561,7 @@
   Got arguments 1:user@dummy 2:hg -R doesnotexist serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   Got arguments 1:user@dummy 2:hg -R local serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/local serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/local' serve --stdio
   Got arguments 1:user@dummy 2:hg -R remote serve --stdio
   changegroup-in-remote hook: HG_BUNDLE2=1
   HG_HOOKNAME=changegroup

test-subrepo-relative-path.t

--- c:/hgdev/src/tests/test-subrepo-relative-path.t
+++ c:/hgdev/src/tests/test-subrepo-relative-path.t.err
@@ -215,5 +215,5 @@
   $ cat dummylog
   Got arguments 1:user@dummy 2:hg -R cloned serve --stdio
   Got arguments 1:user@dummy 2:hg -R sub serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/cloned serve --stdio
-  Got arguments 1:user@dummy 2:hg -R $TESTTMP/sub serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/cloned' serve --stdio
+  Got arguments 1:user@dummy 2:hg -R '$TESTTMP/sub' serve --stdio

test-subrepo.t

--- c:/hgdev/src/tests/test-subrepo.t
+++ c:/hgdev/src/tests/test-subrepo.t.err
@@ -1263,9 +1263,7 @@
   ../shared/subrepo-2/.hg/sharedpath
   ../shared/subrepo-2/.hg/wcache
   ../shared/subrepo-2/.hg/wcache/checkisexec (execbit !)
-  ../shared/subrepo-2/.hg/wcache/checklink (symlink !)
-  ../shared/subrepo-2/.hg/wcache/checklink-target (symlink !)
-  ../shared/subrepo-2/.hg/wcache/manifestfulltextcache (reporevlogstore !)
+  ../shared/subrepo-2/.hg/wcache/manifestfulltextcache
   ../shared/subrepo-2/file
   $ hg -R ../shared in
   abort: repository default not found!
--- c:/hgdev/src/tests/test-symlink-placeholder.t
+++ c:/hgdev/src/tests/test-symlink-placeholder.t.err
@@ -29,7 +29,6 @@
   $ rm b
   $ echo foo > b
   $ hg --config extensions.n=$TESTTMP/nolink.py status --debug
-  ignoring suspect symlink placeholder "b"
 
 Make a clone using placeholders:
 
@@ -38,7 +37,7 @@
   2 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ cd ../win-repo
   $ cat b
-  a (no-eol)
+  foo
   $ hg --config extensions.n=$TESTTMP/nolink.py st --debug
 
 Empty placeholder:
@@ -46,25 +45,23 @@
   $ rm b
   $ touch b
   $ hg --config extensions.n=$TESTTMP/nolink.py st --debug
-  ignoring suspect symlink placeholder "b"
+  M b
 
 Write binary data to the placeholder:
 
   >>> open('b', 'w').write('this is a binary') and None
   $ hg --config extensions.n=$TESTTMP/nolink.py st --debug
-  ignoring suspect symlink placeholder "b"
+  M b
 
 Write a long string to the placeholder:
 
   >>> open('b', 'w').write('this' * 1000) and None
   $ hg --config extensions.n=$TESTTMP/nolink.py st --debug
-  ignoring suspect symlink placeholder "b"
+  M b
 
 Commit shouldn't succeed:
 
   $ hg --config extensions.n=$TESTTMP/nolink.py ci -m1
-  nothing changed
-  [1]
 
 Write a valid string to the placeholder:
 
@@ -74,6 +71,6 @@
   $ hg --config extensions.n=$TESTTMP/nolink.py ci -m1
   $ hg manifest tip --verbose
   644   a
-  644 @ b
+  644   b
 
   $ cd ..

test-symlinks.t

UnicodeDecodeError('unicodeescape', b'--- c:/hgdev/src/tests/test-symlinks.t\n+++ c:/hgdev/src/tests/test-symlinks.t.err\n@@ -4,17 +4,19 @@\n \n   $ hg init test-symlinks-0.7; cd test-symlinks-0.7;\n   $ touch foo; ln -s foo bar; ln -s nonexistent baz\n+  ln: creating symbolic link `baz\' to `nonexistent\': $ENOENT$\n+  [1]\n \n import with add and addremove -- symlink walking should _not_ screwup.\n \n   $ hg add\n   adding bar\n-  adding baz\n   adding foo\n   $ hg forget bar baz foo\n+  baz: $ENOENT$\n+  [1]\n   $ hg addremove\n   adding bar\n-  adding baz\n   adding foo\n \n commit -- the symlink should _not_ appear added to dir state\n@@ -53,17 +55,20 @@\n   $ rm dir/b.o\n   $ mkdir dir/a.o\n   $ ln -s nonexistent dir/b.o\n+  ln: creating symbolic link `dir/b.o\' to `nonexistent\': $ENOENT$\n+  [1]\n   $ mkfifo a.c\n+  mkfifo: cannot create fifo `a.c\': Function not implemented\n+  [1]\n \n it should show a.c, dir/a.o and dir/b.o deleted\n \n   $ hg status\n-  M dir/b.o\n   ! a.c\n   ! dir/a.o\n+  ! dir/b.o\n   ? .hgignore\n   $ hg status a.c\n-  a.c: unsupported file type (type is fifo)\n   ! a.c\n   $ cd ..\n \n@@ -79,7 +84,8 @@\n   $ touch f\n   $ hg add f\n   $ hg status "$p"/y/f\n-  A f\n+  abort: $TESTTMP/y/f not under root \'$TESTTMP\\x\'\n+  [255]\n \n try symlink outside repo to file inside\n \n@@ -101,18 +107,20 @@\n   $ mkdir -p a/b/c\n   $ cd a/b/c\n   $ ln -s /path/to/symlink/source demo\n+  ln: creating symbolic link `demo\' to `/path/to/symlink/source\': $ENOENT$\n+  [1]\n   $ cd ../../..\n   $ hg stat\n-  ? a/b/c/demo\n   $ hg commit -A -m \'add symlink in a/b/c subdir\'\n-  adding a/b/c/demo\n+  nothing changed\n+  [1]\n \n 2. clone it\n \n   $ cd ..\n   $ hg clone clone clonedest\n   updating to branch default\n-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved\n+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved\n \n \n == symlink and git diffs ==\n@@ -121,29 +129,23 @@\n \n   $ cd clonedest\n   $ hg diff --git -r null:tip\n-  diff --git a/a/b/c/demo b/a/b/c/demo\n-  new file mode 120000\n-  --- /dev/null\n-  +++ b/a/b/c/demo\n-  @@ -0,0 +1,1 @@\n-  +/path/to/symlink/source\n-  \\ No newline at end of file\n   $ hg export --git tip > ../sl.diff\n \n import git symlink diff\n \n   $ hg rm a/b/c/demo\n+  a/b/c/demo: $ENOTDIR$\n+  [1]\n   $ hg commit -m\'remove link\'\n+  nothing changed\n+  [1]\n   $ hg import ../sl.diff\n   applying ../sl.diff\n+  abort: ../sl.diff: no diffs found\n+  [255]\n   $ hg diff --git -r 1:tip\n-  diff --git a/a/b/c/demo b/a/b/c/demo\n-  new file mode 120000\n-  --- /dev/null\n-  +++ b/a/b/c/demo\n-  @@ -0,0 +1,1 @@\n-  +/path/to/symlink/source\n-  \\ No newline at end of file\n+  abort: unknown revision \'1\'!\n+  [255]\n \n == symlinks and addremove ==\n \n@@ -156,24 +158,20 @@\n   $ mv foo bar\n   $ ln -s bar foo\n   $ hg status\n-  ! foo/a\n   ? bar/a\n-  ? foo\n \n now addremove should remove old files\n \n   $ hg addremove\n   adding bar/a\n-  adding foo\n-  removing foo/a\n \n commit and update back\n \n   $ hg ci -mb\n   $ hg up \'.^\'\n-  1 files updated, 0 files merged, 2 files removed, 0 files unresolved\n+  0 files updated, 0 files merged, 1 files removed, 0 files unresolved\n   $ hg up tip\n-  2 files updated, 0 files merged, 1 files removed, 0 files unresolved\n+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved\n \n   $ cd ..\n \n@@ -186,78 +184,111 @@\n   $ hg status\n   ? foo\n   $ hg status ../link\n-  ? foo\n+  abort: ../link not under root \'$TESTTMP\\root\'\n+  [255]\n   $ hg add foo\n   $ hg cp foo "$TESTTMP/link/bar"\n-  foo has not been committed yet, so no copy data will be stored for bar.\n+  abort: $TESTTMP/link/bar not under root \'$TESTTMP\\root\'\n+  [255]\n   $ cd ..\n \n \n   $ hg init b\n   $ cd b\n   $ ln -s nothing dangling\n+  ln: creating symbolic link `dangling\' to `nothing\': $ENOENT$\n+  [1]\n   $ hg commit -m \'commit symlink without adding\' dangling\n-  abort: dangling: file not tracked!\n+  abort: dangling: $ENOENT$\n   [255]\n   $ hg add dangling\n+  dangling: $ENOENT$\n+  [1]\n   $ hg commit -m \'add symlink\'\n+  nothing changed\n+  [1]\n \n   $ hg tip -v\n-  changeset:   0:cabd88b706fc\n+  changeset:   -1:000000000000\n   tag:         tip\n-  user:        test\n+  user:        \n   date:        Thu Jan 01 00:00:00 1970 +0000\n-  files:       dangling\n-  description:\n-  add symlink\n-  \n   \n   $ hg manifest --debug\n-  2564acbe54bbbedfbf608479340b359f04597f80 644 @ dangling\n   $ readlink.py dangling\n-  dangling -> nothing\n+  Traceback (most recent call last):\\r (esc)\n+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>\\r (esc)\n+      print(f, \'->\', os.readlink(f))\\r (esc)\n+  FileNotFoundError: [WinError 2] $ENOENT$: \'dangling\'\\r (esc)\n+  [1]\n \n   $ rm dangling\n+  rm: cannot lstat `dangling\': $ENOENT$\n+  [1]\n   $ ln -s void dangling\n+  ln: creating symbolic link `dangling\' to `void\': $ENOENT$\n+  [1]\n   $ hg commit -m \'change symlink\'\n+  nothing changed\n+  [1]\n   $ readlink.py dangling\n-  dangling -> void\n+  Traceback (most recent call last):\\r (esc)\n+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>\\r (esc)\n+      print(f, \'->\', os.readlink(f))\\r (esc)\n+  FileNotFoundError: [WinError 2] $ENOENT$: \'dangling\'\\r (esc)\n+  [1]\n \n \n modifying link\n \n   $ rm dangling\n+  rm: cannot lstat `dangling\': $ENOENT$\n+  [1]\n   $ ln -s empty dangling\n+  ln: creating symbolic link `dangling\' to `empty\': $ENOENT$\n+  [1]\n   $ readlink.py dangling\n-  dangling -> empty\n+  Traceback (most recent call last):\\r (esc)\n+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>\\r (esc)\n+      print(f, \'->\', os.readlink(f))\\r (esc)\n+  FileNotFoundError: [WinError 2] $ENOENT$: \'dangling\'\\r (esc)\n+  [1]\n \n \n reverting to rev 0:\n \n   $ hg revert -r 0 -a\n-  reverting dangling\n   $ readlink.py dangling\n-  dangling -> nothing\n+  Traceback (most recent call last):\\r (esc)\n+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>\\r (esc)\n+      print(f, \'->\', os.readlink(f))\\r (esc)\n+  FileNotFoundError: [WinError 2] $ENOENT$: \'dangling\'\\r (esc)\n+  [1]\n \n \n backups:\n \n   $ readlink.py *.orig\n-  dangling.orig -> empty\n+  *.orig -> *.orig not a symlink\\r (esc)\n   $ rm *.orig\n+  rm: cannot lstat `*.orig\': $ENOENT$\n+  [1]\n   $ hg up -C\n-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved\n+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved\n \n copies\n \n   $ hg cp -v dangling dangling2\n-  copying dangling to dangling2\n+  dangling: $ENOENT$\n+  abort: no files to copy\n+  [255]\n   $ hg st -Cmard\n-  A dangling2\n-    dangling\n   $ readlink.py dangling dangling2\n-  dangling -> void\n-  dangling2 -> void\n+  Traceback (most recent call last):\\r (esc)\n+    File "c:/hgdev/src/tests/readlink.py", line 11, in <module>\\r (esc)\n+      print(f, \'->\', os.readlink(f))\\r (esc)\n+  FileNotFoundError: [WinError 2] $ENOENT$: \'dangling\'\\r (esc)\n+  [1]\n \n \n Issue995: hg copy -A incorrectly handles symbolic links\n@@ -267,9 +298,13 @@\n   $ mkdir dir\n   $ ln -s dir dirlink\n   $ hg ci -qAm \'add dirlink\'\n+  [1]\n   $ mkdir newdir\n   $ mv dir newdir/dir\n   $ mv dirlink newdir/dirlink\n   $ hg mv -A dirlink newdir/dirlink\n-\n-  $ cd ..\n+  dirlink: $ENOENT$\n+  abort: no files to copy\n+  [255]\n+\n+  $ cd ..\n', 1169, 1171, 'truncated \\xXX escape') decoding diff, sorry

test-template-functions.t

--- c:/hgdev/src/tests/test-template-functions.t
+++ c:/hgdev/src/tests/test-template-functions.t.err
@@ -1559,23 +1559,23 @@
 json filter should try round-trip conversion to utf-8:
 
   $ HGENCODING=ascii hg log -T "{branch|json}
" -r0
+  "é"
+  $ HGENCODING=ascii hg log -T "{desc|json}
" -r0
+  "non-ascii branch: é"
+
+json filter should take input as utf-8 if it was converted from utf-8:
+
+  $ HGENCODING=latin-1 hg log -T "{branch|json}
" -r0
+  "é"
+  $ HGENCODING=latin-1 hg log -T "{desc|json}
" -r0
+  "non-ascii branch: é"
+
+json filter takes input as utf-8b:
+
+  $ HGENCODING=ascii hg log -T "{'`cat utf-8`'|json}
" -l1
+  "é"
+  $ HGENCODING=ascii hg log -T "{'`cat latin1`'|json}
" -l1
   "é"
-  $ HGENCODING=ascii hg log -T "{desc|json}
" -r0
-  "non-ascii branch: é"
-
-json filter should take input as utf-8 if it was converted from utf-8:
-
-  $ HGENCODING=latin-1 hg log -T "{branch|json}
" -r0
-  "é"
-  $ HGENCODING=latin-1 hg log -T "{desc|json}
" -r0
-  "non-ascii branch: é"
-
-json filter takes input as utf-8b:
-
-  $ HGENCODING=ascii hg log -T "{'`cat utf-8`'|json}
" -l1
-  "é"
-  $ HGENCODING=ascii hg log -T "{'`cat latin1`'|json}
" -l1
-  "?"
 
 cbor filter is bytes transparent, which should handle bytes subtypes
 as bytes:
@@ -1583,20 +1583,20 @@
   $ HGENCODING=ascii hg log -T "{branch|cbor}" -r0    > | "$PYTHON" "$TESTTMP/decodecbor.py"
   [
-   '?'
+   '??'
   ]
   $ HGENCODING=latin-1 hg log -T "{branch|cbor}" -r0    > | "$PYTHON" "$TESTTMP/decodecbor.py"
   [
-   'é'
+   'é'
   ]
 
 utf8 filter:
 
   $ HGENCODING=ascii hg log -T "round-trip: {branch|utf8|hex}
" -r0
-  round-trip: c3a9
+  round-trip: c383c2a9
   $ HGENCODING=latin1 hg log -T "decoded: {'`cat latin1`'|utf8|hex}
" -l1
-  decoded: c3a9
+  decoded: c383c2a9
   $ HGENCODING=ascii hg log -T "replaced: {'`cat latin1`'|utf8|hex}
" -l1
   abort: decoding near * (glob)
   [255]
@@ -1606,7 +1606,7 @@
 pad width:
 
   $ HGENCODING=utf-8 hg debugtemplate "{pad('`cat utf-8`', 2, '-')}
"
-  é- (esc)
+  é (esc)
 
 read config options:
 

test-tools.t

--- c:/hgdev/src/tests/test-tools.t
+++ c:/hgdev/src/tests/test-tools.t.err
@@ -47,7 +47,7 @@
 
 #if symlink
   $ f foo --mode
-  foo: mode=644
+  foo: mode=666
 #endif
 
 #if no-windows
@@ -96,13 +96,11 @@
 
 Yadda is a symlink
   $ f -qr dir -HB 17
-  dir: directory with 3 files (symlink !)
+  dir: directory with 2 files
   dir: directory with 2 files (no-symlink !)
   dir/bar:
   0000: 31 0a 32 0a 33 0a 34 0a 35 0a 36 0a 37 0a 38 0a |1.2.3.4.5.6.7.8.|
   0010: 39                                              |9|
   dir/foo:
   0000: 66 6f 6f 0a                                     |foo.|
-  dir/l: (symlink !)
-  0000: 79 61 64 64 61                                  |yadda| (symlink !)
 

test-update-names.t

--- c:/hgdev/src/tests/test-update-names.t
+++ c:/hgdev/src/tests/test-update-names.t.err
@@ -66,12 +66,19 @@
   $ mkdir folder1 && mkdir folder2
   $ ln -s folder1 folder
   $ hg ci -Am "symlink to folder1"
-  adding folder
+  nothing changed
+  [1]
   $ rm folder
+  rm: cannot remove directory `folder': Is a directory
+  [1]
   $ ln -s folder2 folder
+  ln: creating symbolic link `folder/folder2' to `folder2': $ENOENT$
+  [1]
   $ hg ci -Am "symlink to folder2"
+  nothing changed
+  [1]
   $ hg up 1
-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
   $ cd ..
 
 #endif

test-url-download.t

--- c:/hgdev/src/tests/test-url-download.t
+++ c:/hgdev/src/tests/test-url-download.t.err
@@ -32,7 +32,44 @@
 Check other kind of compatible url
 
   $ hg debugdownload ./null.txt
-  1 0000000000000000000000000000000000000000
+  ** unknown exception encountered, please report by visiting
+  ** https://mercurial-scm.org/wiki/BugTracker
+  ** Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)]
+  ** Mercurial Distributed SCM (version 5.1.2+610-1cb7facd85b4)
+  ** Extensions loaded: 
+  Traceback (most recent call last):
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\bin\hg", line 36, in <module>
 (esc)
+      dispatch.run()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 111, in run
 (esc)
+      status = dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 250, in dispatch
 (esc)
+      ret = _runcatch(req) or 0
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 424, in _runcatch
 (esc)
+      return _callcatch(ui, _runcatchfunc)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 433, in _callcatch
 (esc)
+      return scmutil.callcatch(ui, func)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\scmutil.py", line 177, in callcatch
 (esc)
+      return func()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 414, in _runcatchfunc
 (esc)
+      return _dispatch(req)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1174, in _dispatch
 (esc)
+      lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 862, in runcommand
 (esc)
+      ret = _runcommand(ui, options, cmd, d)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1185, in _runcommand
 (esc)
+      return cmdfunc()
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\dispatch.py", line 1171, in <lambda>
 (esc)
+      d = lambda: util.checksignature(func)(ui, *args, **strcmdopt)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\util.py", line 1843, in check
 (esc)
+      return func(*args, **kwargs)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\debugcommands.py", line 1007, in debugdownload
 (esc)
+      fh = urlmod.open(ui, url, output)
 (esc)
+    File "C:\Users\ADMINI~1\AppData\Local\Temp\hgtests.lh83tfgb\install\lib\python\mercurial\url.py", line 679, in open
 (esc)
+      url_ = b'file://' + pycompat.bytesurl(urlreq.pathname2url(path))
 (esc)
+    File "C:\hgdev\python37-x64\Lib\nturl2path.py", line 53, in pathname2url
 (esc)
+      if not ':' in p:
 (esc)
+  TypeError: a bytes-like object is required, not 'str'
 (esc)
+  [1]
 
 Test largefile URL
 ------------------

Skipped Tests

Long Tests

DurationTest
173.5stest-merge-combination.t
170.3stest-obsolete.t
167.3stest-bookmarks-pushpull.t#b2-pushkey
166.0stest-bookmarks-pushpull.t#b2-binary
152.6stest-revset.t
152.3stest-obsolete-bundle-strip.t
148.4stest-http-permissions.t
144.0stest-subrepo.t
139.2stest-static-http.t
129.6stest-hgwebdir.t
127.8stest-graft.t#abortcommand
126.9stest-graft.t#abortflag
123.5stest-largefiles.t
118.2stest-rebase-obsolete.t
117.3stest-template-functions.t
116.5stest-bundle2-exchange.t#sshv1
116.5stest-log.t
115.6stest-bundle2-exchange.t#sshv2
111.8stest-import.t
110.0stest-glog.t
109.8stest-mq.t
109.8stest-glog-beautifygraph.t
108.9stest-merge-tools.t
105.3stest-obsmarker-template.t
104.0stest-largefiles-misc.t
98.3stest-treediscovery.t
96.9stest-https.t
89.3stest-fix.t
87.7stest-shelve.t#stripbased
85.0stest-commit-amend.t
84.7stest-shelve.t#phasebased
84.7stest-run-tests.t
84.2stest-rename-merge2.t
84.1stest-update-branches.t
83.9stest-strip.t
83.4stest-keyword.t
82.2stest-copies.t#changeset
82.1stest-copies.t#sidedata
82.0stest-copies.t#filelog
82.0stest-copies.t#compatibility
81.4stest-largefiles-update.t
81.2stest-shelve2.t#phasebased#abortflag#continuecommand
81.1stest-lfs-serve.t#lfsremote-on
80.8stest-shelve2.t#stripbased#abortflag#continueflag
80.7stest-shelve2.t#stripbased#abortflag#continuecommand
80.6stest-shelve2.t#phasebased#abortflag#continueflag
80.5stest-phases-exchange.t
80.2stest-shelve2.t#phasebased#abortcommand#continueflag
79.6stest-shelve2.t#stripbased#abortcommand#continueflag
79.5stest-shelve2.t#stripbased#abortcommand#continuecommand
79.4stest-http.t
79.3stest-http-bad-server.t
77.9stest-shelve2.t#phasebased#abortcommand#continuecommand
77.5stest-revset2.t
77.4stest-bookmarks.t
75.2stest-merge-force.t
74.9stest-clonebundles.t
73.8stest-obsolete-divergent.t
73.0stest-copytrace-heuristics.t
71.9stest-mq-subrepo.t
71.0stest-push-race.t#strict
70.0stest-push-race.t#unrelated
69.2stest-largefiles-wireproto.t#sshv2
69.1stest-merge-changedelete.t
68.7stest-largefiles-wireproto.t#sshv1
68.5stest-hgweb.t
68.2stest-treediscovery-legacy.t
67.8stest-narrow.t#tree#lfs-on
67.5stest-push-warn.t
67.3stest-narrow.t#flat#lfs-on
67.0stest-mv-cp-st-diff.t
66.7stest-lfs.t
66.6stest-http-bundle1.t
65.7stest-mq-header-date.t
64.0stest-censor.t
63.9stest-archive.t
63.9stest-clone.t#sshv2
63.7stest-template-basic.t
63.6stest-clone.t#sshv1
62.9stest-template-keywords.t
62.6stest-revert.t
62.6stest-bisect.t
62.0stest-mq-header-from.t
61.5stest-transplant.t#continueflag
60.9stest-transplant.t#commandmode
59.3stest-annotate.t
59.2stest-subrepo-deep-nested-change.t
58.4stest-narrow.t#flat#lfs-off
58.3stest-rebase-scenario-global.t
58.2stest-narrow.t#tree#lfs-off
58.2stest-lfs-serve-access.t
57.3stest-clone-uncompressed.t#stream-bundle2
57.1stest-treemanifest.t
56.2stest-convert-filemap.t
55.7stest-ssh-proto.t
55.5stest-uncommit.t
54.3stest-debugcommands.t
52.6stest-backout.t
52.0stest-push-http.t#bundle2
51.5stest-resolve.t
51.4stest-fileset.t
50.8stest-tags.t
50.6stest-init.t
50.2stest-mq-guards.t
50.1stest-template-map.t
49.1stest-tag.t
48.3stest-clone-uncompressed.t#stream-legacy
48.0stest-hgweb-json.t
47.9stest-histedit-fold.t
47.7stest-hook.t
47.7stest-rebase-collapse.t
46.5stest-branches.t
46.1stest-commit-interactive.t
45.8stest-copies-unrelated.t#compatibility
45.4stest-copies-unrelated.t#changeset
45.2stest-copies-unrelated.t#sidedata
45.0stest-copies-unrelated.t#filelog
45.0stest-commit.t
44.7stest-check-code.t
44.7stest-rename.t
44.0stest-bundle2-remote-changegroup.t#sshv1
43.6stest-fetch.t
43.4stest-help.t
43.2stest-rebase-abort.t#abortflag#continuecommand
43.2stest-rebase-abort.t#abortcommand#continuecommand
43.1stest-rebase-abort.t#abortflag#continueflag
43.1stest-rebase-abort.t#abortcommand#continueflag
43.0stest-newbranch.t
42.8stest-bundle2-remote-changegroup.t#sshv2
42.8stest-narrow-widen-no-ellipsis.t#tree
42.7stest-narrow-widen-no-ellipsis.t#flat
42.4stest-extension.t
42.2stest-status.t
42.0stest-contrib-perf.t
41.9stest-histedit-obsolete.t#abortcommand
41.1stest-mq-qpush-fail.t
40.7stest-ssh.t#sshv2
40.7stest-ssh.t#sshv1
40.7stest-fastannotate-hg.t
40.5stest-histedit-obsolete.t#abortflag
40.3stest-bisect2.t
40.0stest-narrow-widen.t#flat
39.9stest-acl.t
39.8stest-issue3084.t
39.8stest-narrow-widen.t#tree
39.7stest-narrow-clone.t
39.5stest-push-http.t#bundle1
39.5stest-hgweb-filelog.t
39.3stest-alias.t
39.0stest-wireproto-exchangev2.t
38.3stest-bundle.t
38.2stest-obshistory.t
38.1stest-eol.t
37.9stest-rebase-dest.t
37.6stest-phases.t
36.8stest-histedit-arguments.t#abortcommand
36.5stest-absorb.t
36.4stest-ssh-bundle1.t#sshv2
36.2stest-histedit-arguments.t#abortflag
36.0stest-revlog-mmapindex.t
35.5stest-split.t#obsstore-on
35.4stest-obsolete-distributed.t
35.4stest-ssh-bundle1.t#sshv1
35.3stest-setdiscovery.t
35.3stest-hgweb-symrev.t
35.2stest-automv.t
34.8stest-sparse.t
34.8stest-branch-change.t
34.5stest-merge1.t
34.4stest-rebase-newancestor.t
34.4stest-histedit-edit.t
34.3stest-narrow-clone-no-ellipsis.t
34.2stest-hgweb-diffs.t
34.2stest-merge-no-file-change.t
34.2stest-subrepo-recursion.t
34.1stest-rebase-parameters.t
34.1stest-upgrade-repo.t
33.6stest-grep.t
33.6stest-rollback.t
33.5stest-bheads.t
33.3stest-narrow-shallow-merges.t
33.2stest-casecollision-merge.t
32.7stest-git-export.t
32.5stest-mq-qpush-exact.t
32.2stest-bookflow.t
32.0stest-rebase-cache.t
31.8stest-amend.t#obsstore-off
31.7stest-split.t#obsstore-off
31.6stest-amend.t#obsstore-on
31.5stest-narrow-clone-stream.t#flat-fncache
31.5stest-narrow-clone-stream.t#tree
31.3stest-narrow-clone-stream.t#flat-nofncache
31.3stest-import-git.t
31.3stest-mq-qclone-http.t
31.0stest-audit-subrepo.t
31.0stest-convert-hg-sink.t
30.6stest-mq-qnew.t
30.5stest-ssh-proto-unbundle.t
30.4stest-bundle-r.t
30.0stest-wireproto.t
29.8stest-show-work.t
29.5stest-hgweb-commands.t
29.2stest-rebase-interruptions.t
29.0stest-infinitepush-bundlestore.t
28.9stest-remove.t
28.5stest-rebase-named-branches.t
28.4stest-copies-in-changeset.t#sidedata
28.4stest-lfs-test-server.t#hg-server
28.2stest-unamend.t
27.9stest-walk.t
27.9stest-rebase-pull.t
27.9stest-hghave.t
27.8stest-commandserver.t
27.7stest-casefolding.t
27.5stest-narrow-clone-nonlinear.t
27.2stest-push.t
26.9stest-parse-date.t
26.8stest-hgweb-csp.t
26.8stest-rebase-base-flag.t
26.7stest-revset-legacy-lookup.t
26.7stest-strip-cross.t
26.6stest-add.t
26.5stest-http-clone-r.t
26.2stest-mq-qimport.t
25.8stest-patchbomb.t
25.5stest-fix-topology.t#obsstore-on
25.3stest-copies-in-changeset.t#extra
25.3stest-exchange-obsmarkers-case-A1.t
25.2stest-narrow-share.t#tree
25.2stest-lfconvert.t
25.1stest-narrow-patterns.t
25.1stest-narrow-share.t#flat
25.0stest-extdiff.t
24.9stest-mq-qrefresh.t
24.8stest-status-color.t
24.6stest-incoming-outgoing.t
24.3stest-subrepo-relative-path.t
24.0stest-exchange-obsmarkers-case-A3.t
23.8stest-identify.t
23.7stest-narrow-shallow.t
23.3stest-dirstate-race.t
23.3stest-merge-criss-cross.t
23.3stest-obsolete-checkheads.t
23.0stest-flagprocessor.t
23.0stest-hardlinks.t
22.9stest-rebase-bookmarks.t
22.9stest-rebase-mq.t
22.8stest-narrow-pull.t
22.7stest-fix-topology.t#obsstore-off
22.5stest-rebase-rename.t
22.5stest-histedit-commute.t
22.4stest-http-protocol.t
22.4stest-diffstat.t
22.2stest-cache-abuse.t
22.1stest-bundle-phases.t
22.1stest-lfs-serve.t#lfsremote-off
22.1stest-bookmarks-current.t
21.6stest-logexchange.t
21.3stest-largefiles-cache.t
21.1stest-rebase-conflicts.t
20.8stest-histedit-fold-non-commute.t
20.4stest-rebase-detach.t
20.4stest-import-bypass.t
20.4stest-infinitepush.t
20.4stest-pull-bundle.t
20.3stest-copy.t
20.2stest-rename-merge1.t
20.2stest-infinitepush-ci.t
20.1stest-githelp.t

Timeline

test-contrib-check-code.t (3.22s)test-contrib-check-commit.t (0.78s)test-contrib-perf.t (42.00s)test-imports-checker.t (6.59s)test-merge-combination.t (173.55s)test-obsolete-checkheads.t (23.30s)test-push-race.t#strict (71.00s)test-run-tests.t (84.66s)test-push-race.t#unrelated (70.05s)test-check-code.t (44.72s)test-push-checkheads-unpushed-D4.t (10.06s)test-push-checkheads-unpushed-D5.t (10.08s)test-push-checkheads-unpushed-D3.t (9.78s)test-check-py3-compat.t (5.75s)test-push-checkheads-pruned-B8.t (10.39s)test-push-checkheads-superceed-A7.t (9.09s)test-push-checkheads-superceed-A6.t (9.69s)test-rebase-check-restore.t (10.27s)test-push-checkheads-unpushed-D7.t (10.12s)test-push-checkheads-unpushed-D2.t (7.94s)test-largefiles-update.t (81.41s)test-push-checkheads-pruned-B5.t (8.47s)test-push-checkheads-superceed-A3.t (8.02s)test-push-checkheads-superceed-A2.t (8.16s)test-push-checkheads-pruned-B2.t (7.03s)test-push-checkheads-pruned-B3.t (7.33s)test-push-checkheads-pruned-B4.t (6.88s)test-push-checkheads-unpushed-D6.t (7.81s)test-push-checkheads-partial-C2.t (6.17s)test-push-checkheads-partial-C1.t (6.26s)test-push-checkheads-partial-C4.t (5.86s)test-push-checkheads-superceed-A8.t (7.53s)test-push-checkheads-pruned-B6.t (7.31s)test-push-checkheads-pruned-B7.t (7.03s)test-push-checkheads-partial-C3.t (6.09s)test-push-checkheads-unpushed-D1.t (6.42s)test-subrepo-svn.t (0.19s)test-push-checkheads-superceed-A4.t (6.09s)test-push-checkheads-superceed-A5.t (5.86s)test-push-checkheads-pruned-B1.t (5.01s)test-push-checkheads-superceed-A1.t (5.25s)test-copytrace-heuristics.t (73.02s)test-check-config.t (10.77s)test-glog-beautifygraph.t (109.75s)test-gendoc-ja.t (0.19s)test-check-module-imports.t (2.08s)test-convert-cvs.t (0.17s)test-help.t (43.36s)test-obsolete-bounds-checking.t (1.36s)test-gendoc.t (0.19s)test-glog.t (110.00s)test-convert-svn-sink.t (0.47s)test-check-help.t (13.33s)test-patchbomb.t (25.81s)test-convert-svn-source.t (0.17s)test-obsolete-bundle-strip.t (152.34s)test-check-pyflakes.t (0.52s)test-abort-checkin.t (1.45s)test-http-bad-server.t (79.27s)test-ssh-proto-unbundle.t (30.45s)test-obsmarker-template.t (105.33s)test-acl.t (39.91s)test-check-commit.t (2.77s)test-check-shbang.t (4.61s)test-convert-svn-move.t (0.22s)test-check-interfaces.py (0.83s)test-hgweb-commands.t (29.45s)test-hgweb-symrev.t (35.31s)test-obsolete.t (170.28s)test-upgrade-repo.t (34.11s)test-extension.t (42.44s)test-ssh-proto.t (55.66s)test-log.t (116.45s)test-check-execute.t (0.20s)test-dirstate-race.t (23.31s)test-check-pylint.t (0.47s)test-graft.t#abortcommand (127.78s)test-graft.t#abortflag (126.92s)test-convert-svn-encoding.t (0.20s)test-wireproto-content-redirects.t (17.19s)test-hgweb-filelog.t (39.50s)test-hgwebdir.t (129.56s)test-wireproto-exchangev2.t (39.05s)test-bundle2-format.t (15.23s)test-template-map.t (50.06s)test-revset.t (152.56s)test-subrepo.t (144.02s)test-convert-cvs-detectmerge.t (0.19s)test-rebase-obsolete.t (118.16s)test-largefiles.t (123.52s)test-merge-tools.t (108.91s)test-hgweb-json.t (47.95s)test-convert-cvs-synthetic.t (0.17s)test-gendoc-ro.t (0.20s)test-import.t (111.84s)test-subrepo-deep-nested-change.t (59.20s)test-bundle2-exchange.t#sshv1 (116.50s)test-bundle2-exchange.t#sshv2 (115.56s)test-phases-exchange.t (80.52s)test-bookmarks-pushpull.t#b2-binary (165.97s)test-bookmarks-pushpull.t#b2-pushkey (167.28s)test-convert-cvsnt-mergepoints.t (0.31s)test-strip.t (83.94s)test-template-functions.t (117.27s)test-commit-interactive.t (46.09s)test-merge-changedelete.t (69.06s)test-lfs.t (66.70s)test-fix.t (89.27s)test-rename-merge2.t (84.22s)test-hook.t (47.72s)test-https.t (96.91s)test-highlight.t (0.17s)test-convert-git.t (0.22s)test-http-permissions.t (148.40s)test-lfs-test-server.t#git-server (0.42s)test-lfs-test-server.t#hg-server (28.38s)test-setdiscovery.t (35.34s)test-commandserver.t (27.81s)test-clone.t#sshv1 (63.65s)test-clone.t#sshv2 (63.88s)test-bookmarks.t (77.37s)test-check-clang-format.t (0.17s)test-merge-force.t (75.18s)test-revset2.t (77.50s)test-convert-cvs-branch.t (0.19s)test-shelve.t#phasebased (84.70s)test-shelve.t#stripbased (87.71s)test-largefiles-misc.t (103.97s)test-commit-amend.t (85.04s)test-branches.t (46.53s)test-http-protocol.t (22.43s)test-hgweb-diffs.t (34.20s)test-revert.t (62.62s)test-keyword.t (83.43s)test-template-keywords.t (62.87s)test-wireproto-command-filesdata.t (11.62s)test-convert-svn-branches.t (0.20s)test-mq.t (109.77s)test-convert-hg-svn.t (0.20s)test-gendoc-de.t (0.22s)test-lfs-serve-access.t (58.20s)test-wireproto-command-capabilities.t (9.72s)test-generaldelta.t (19.62s)test-subrepo-git.t (0.20s)test-lfs-serve.t#lfsremote-off (22.10s)test-lfs-serve.t#lfsremote-on (81.14s)test-check-format.t (0.17s)test-transplant.t#commandmode (60.94s)test-transplant.t#continueflag (61.47s)test-treemanifest.t (57.13s)test-tags.t (50.83s)test-phases.t (37.65s)test-template-basic.t (63.69s)test-tag.t (49.12s)test-subrepo-recursion.t (34.17s)test-hgweb.t (68.47s)test-convert.t (10.11s)test-check-jshint.t (0.44s)test-http-api-httpv2.t (10.94s)test-http.t (79.36s)test-convert-filemap.t (56.16s)test-obsolete-divergent.t (73.77s)test-annotate.t (59.29s)test-bundle.t (38.26s)test-resolve.t (51.51s)test-shelve2.t#phasebased#abortcommand#continuecommand (77.88s)test-shelve2.t#phasebased#abortcommand#continueflag (80.20s)test-shelve2.t#phasebased#abortflag#continuecommand (81.23s)test-shelve2.t#phasebased#abortflag#continueflag (80.57s)test-shelve2.t#stripbased#abortcommand#continuecommand (79.51s)test-shelve2.t#stripbased#abortcommand#continueflag (79.57s)test-shelve2.t#stripbased#abortflag#continuecommand (80.73s)test-shelve2.t#stripbased#abortflag#continueflag (80.78s)test-split.t#obsstore-off (31.70s)test-split.t#obsstore-on (35.45s)test-encoding-textwrap.t (3.56s)test-obsolete-distributed.t (35.39s)test-walk.t (27.94s)test-mv-cp-st-diff.t (67.00s)test-bisect.t (62.61s)test-convert-p4-filetypes.t (0.20s)test-notify.t (15.33s)test-rebase-scenario-global.t (58.33s)test-commit.t (45.00s)test-ssh.t#sshv1 (40.69s)test-ssh.t#sshv2 (40.69s)test-bundle2-remote-changegroup.t#sshv1 (43.95s)test-bundle2-remote-changegroup.t#sshv2 (42.81s)test-clonebundles.t (74.94s)test-wireproto-exchangev2-shallow.t (0.19s)test-import-git.t (31.31s)test-mq-header-from.t (61.95s)test-i18n.t (2.80s)test-treediscovery.t (98.29s)test-bisect2.t (40.31s)test-archive.t (63.90s)test-fileset.t (51.36s)test-push-warn.t (67.54s)test-hgweb-annotate-whitespace.t (7.69s)test-remotefilelog-repack.t (0.19s)test-debugcommands.t (54.26s)test-remove.t (28.92s)test-rebase-inmemory.t (0.14s)test-clone-uncompressed.t#stream-bundle2 (57.31s)test-clone-uncompressed.t#stream-legacy (48.34s)test-alias.t (39.34s)test-ssh-bundle1.t#sshv1 (35.37s)test-ssh-bundle1.t#sshv2 (36.36s)test-mq-header-date.t (65.72s)test-wireproto-command-changesetdata.t (12.81s)test-pull-pull-corruption.t (17.45s)test-blackbox.t (17.67s)test-convert-svn-startrev.t (0.22s)test-devel-warnings.t (7.75s)test-backout.t (52.58s)test-push-http.t#bundle1 (39.53s)test-push-http.t#bundle2 (52.01s)test-rebase-collapse.t (47.69s)test-contrib-relnotes.t (0.19s)test-update-branches.t (84.08s)test-audit-subrepo.t (31.05s)test-histedit-obsolete.t#abortcommand (41.87s)test-histedit-obsolete.t#abortflag (40.55s)test-histedit-arguments.t#abortcommand (36.78s)test-histedit-arguments.t#abortflag (36.20s)test-wireproto.t (30.03s)test-globalopts.t (14.62s)test-http-bundle1.t (66.59s)test-hgweb-descend-empties.t (3.64s)test-obshistory.t (38.16s)test-fncache.t (16.66s)test-rename.t (44.72s)test-uncommit.t (55.52s)test-mq-subrepo.t (71.86s)test-fastannotate-hg.t (40.67s)test-histedit-fold.t (47.89s)test-progress.t (6.84s)test-remotefilelog-repack-fast.t (0.19s)test-log-linerange.t (13.39s)test-extdiff.t (24.97s)test-getbundle.t (10.58s)test-largefiles-wireproto.t#sshv1 (68.69s)test-largefiles-wireproto.t#sshv2 (69.22s)test-status-color.t (24.77s)test-narrow.t#flat#lfs-off (58.39s)test-narrow.t#flat#lfs-on (67.34s)test-narrow.t#tree#lfs-off (58.22s)test-narrow.t#tree#lfs-on (67.83s)test-convert-hg-sink.t (30.97s)test-logexchange.t (21.58s)test-merge-types.t (0.22s)test-histedit-commute.t (22.48s)test-censor.t (64.03s)test-lfconvert.t (25.23s)test-histedit-edit.t (34.38s)test-remotefilelog-bgprefetch.t (0.19s)test-grep.t (33.58s)test-fetch.t (43.64s)test-copies.t#changeset (82.19s)test-copies.t#compatibility (82.03s)test-copies.t#filelog (82.05s)test-copies.t#sidedata (82.12s)test-wireproto-caching.t (8.97s)test-amend.t#obsstore-off (31.80s)test-amend.t#obsstore-on (31.61s)test-incoming-outgoing.t (24.59s)test-clone-pull-corruption.t (8.83s)test-eol.t (38.11s)test-rollback.t (33.56s)test-install.t (5.58s)test-newbranch.t (42.98s)test-bundle2-multiple-changegroups.t (11.72s)test-merge-criss-cross.t (23.30s)test-wireproto-command-manifestdata.t (8.39s)test-git-export.t (32.73s)test-infinitepush-ci.t (20.17s)test-status.t (42.23s)test-diff-color.t (8.91s)test-rebase-abort.t#abortcommand#continuecommand (43.19s)test-rebase-abort.t#abortcommand#continueflag (43.12s)test-rebase-abort.t#abortflag#continuecommand (43.23s)test-rebase-abort.t#abortflag#continueflag (43.12s)test-lfs-largefiles.t (19.31s)test-hgweb-empty.t (9.22s)test-dirstate-race2.t (2.53s)test-merge1.t (34.47s)test-infinitepush-bundlestore.t (29.02s)test-rebase-conflicts.t (21.11s)test-push.t (27.17s)test-rebase-newancestor.t (34.41s)test-convert-mtn.t (0.22s)test-copies-in-changeset.t#extra (25.31s)test-copies-in-changeset.t#sidedata (28.44s)test-narrow-shallow-merges.t (33.28s)test-mq-guards.t (50.17s)test-hghave.t (27.89s)test-convert-svn-tags.t (0.22s)test-pager.t (18.69s)test-completion.t (8.78s)test-wireproto-command-filedata.t (10.58s)test-qrecord.t (9.66s)test-mq-subrepo-svn.t (0.22s)test-revset-legacy-lookup.t (26.72s)test-rebase-interruptions.t (29.19s)test-absorb.t (36.53s)test-rebase-parameters.t (34.14s)test-hardlinks.t (22.97s)test-export.t (18.17s)test-issue3084.t (39.84s)test-merge-no-file-change.t (34.19s)test-verify.t (14.08s)test-narrow-patterns.t (25.11s)test-rebase-dest.t (37.88s)test-mq-qpush-fail.t (41.06s)test-narrow-widen-no-ellipsis.t#flat (42.70s)test-narrow-widen-no-ellipsis.t#tree (42.80s)test-bundle-r.t (30.38s)test-rebase-pull.t (27.91s)test-exchange-obsmarkers-case-A1.t (25.28s)test-branch-change.t (34.80s)test-sparse.t (34.83s)test-commit-interactive-curses.t (0.20s)test-rebase-named-branches.t (28.45s)test-fix-topology.t#obsstore-off (22.72s)test-fix-topology.t#obsstore-on (25.47s)test-import-bypass.t (20.41s)test-copies-unrelated.t#changeset (45.41s)test-copies-unrelated.t#compatibility (45.75s)test-copies-unrelated.t#filelog (45.03s)test-copies-unrelated.t#sidedata (45.23s)test-revert-interactive.t (18.34s)test-parse-date.t (26.88s)test-treediscovery-legacy.t (68.22s)test-narrow-widen.t#flat (40.05s)test-narrow-widen.t#tree (39.78s)test-rebase-cache.t (31.98s)test-help-hide.t (0.66s)test-journal.t (9.77s)test-releasenotes-formatting.t (0.17s)test-mq-qrefresh.t (24.94s)test-histedit-fold-non-commute.t (20.84s)test-gendoc-pt_BR.t (0.19s)test-gendoc-zh_CN.t (0.20s)test-gendoc-zh_TW.t (0.17s)test-exchange-obsmarkers-case-A3.t (24.00s)test-mq-qrefresh-interactive.t (5.72s)test-chg.t (0.17s)test-wireproto-command-rawstorefiledata.t (6.34s)test-static-http.t (139.24s)test-histedit-non-commute.t (19.66s)test-hgignore.t (15.16s)test-githelp.t (20.08s)test-win32text.t (14.14s)test-exchange-obsmarkers-case-C3.t (15.22s)test-gendoc-da.t (0.19s)test-gendoc-el.t (0.17s)test-gendoc-fr.t (0.20s)test-gendoc-it.t (0.17s)test-gendoc-ru.t (0.17s)test-gendoc-sv.t (0.17s)test-share-bookmarks.t#svfs (16.77s)test-share-bookmarks.t#vfs (16.92s)test-mq-qnew.t (30.59s)test-bheads.t (33.52s)test-flagprocessor.t (23.05s)test-diff-ignore-whitespace.t (18.00s)test-bookflow.t (32.19s)test-http-api.t (5.76s)test-largefiles-cache.t (21.27s)test-encoding.t (8.72s)test-rebase-rename.t (22.50s)test-convert-bzr-merges.t (0.17s)test-mq-qimport.t (26.22s)test-manifest.t (15.70s)test-url-rev.t (17.03s)test-diff-unified.t (11.75s)test-mq-qrefresh-replace-log-message.t (17.94s)test-unamend.t (28.17s)test-init.t (50.56s)test-pager-legacy.t (11.88s)test-rebase-base-flag.t (26.78s)test-histedit-base.t (10.86s)test-parseindex.t (6.25s)test-clone-r.t (15.33s)test-bad-extension.t (2.91s)test-hgweb-raw.t (14.30s)test-rebase-mq.t (22.92s)test-exchange-obsmarkers-case-D1.t (14.17s)test-hgweb-removed.t (5.39s)test-eol-patch.t (9.89s)test-automv.t (35.20s)test-exchange-obsmarkers-case-C2.t (14.19s)test-single-head.t (17.03s)test-ssh-clone-r.t#sshv1 (14.55s)test-ssh-clone-r.t#sshv2 (14.27s)test-subrepo-relative-path.t (24.28s)test-casecollision-merge.t (33.16s)test-http-clone-r.t (26.53s)test-convert-bzr.t (0.16s)test-bookmarks-corner-case.t (9.48s)test-rename-dir-merge.t (16.44s)test-strip-cross.t (26.67s)test-add.t (26.58s)test-histedit-no-change.t (15.47s)test-narrow-clone.t (39.70s)test-hgrc.t (7.14s)test-diffstat.t (22.41s)test-convert-splicemap.t (14.80s)test-http-proxy.t (14.88s)test-removeemptydirs.t (19.03s)test-fileset-generated.t (9.05s)test-bundle-phases.t (22.12s)test-exchange-obsmarkers-case-C1.t (14.06s)test-status-rev.t (8.52s)test-diff-upgrade.t (0.19s)test-pull-update.t (17.94s)test-copy.t (20.28s)test-bisect3.t (13.03s)test-conflict.t (11.70s)test-remotefilelog-prefetch.t (0.19s)test-up-local-change.t (17.55s)test-dispatch.t (13.22s)test-narrow-exchange.t#lfs-off (14.05s)test-narrow-exchange.t#lfs-on (15.55s)test-obsolete-changeset-exchange.t (10.95s)test-exchange-obsmarkers-case-D4.t (12.17s)test-eol-update.t (9.56s)test-remotefilelog-push-pull.t (0.19s)test-pull-bundle.t (20.39s)test-share.t (15.11s)test-narrow-exchange-merges.t (14.23s)test-absorb-rename.t (18.62s)test-exchange-obsmarkers-case-B5.t (14.22s)test-churn.t (12.75s)test-pull-branch.t (17.47s)test-eol-hook.t (12.03s)test-bundle-type.t (18.67s)test-remotefilelog-linknodes.t (0.17s)test-narrow-trackedcmd.t#flat (13.11s)test-narrow-trackedcmd.t#tree (13.42s)test-byteify-strings.t (1.61s)test-rebase-detach.t (20.42s)test-stream-bundle-v2.t (10.22s)test-sparse-profiles.t (13.00s)test-mq-qpush-exact.t (32.50s)test-fastannotate-protocol.t (12.16s)test-hybridencode.py (0.44s)test-rebase-bookmarks.t (22.94s)test-bookmarks-current.t (22.09s)test-convert-hg-source.t (18.47s)test-notify-changegroup.t (6.94s)test-encoding-align.t (8.03s)test-debugbuilddag.t (8.25s)test-convert-baz.t (0.20s)test-inherit-mode.t (0.19s)test-infinitepush.t (20.39s)test-histedit-non-commute-abort.t (10.91s)test-releasenotes-merging.t (0.19s)test-remotefilelog-gcrepack.t (0.19s)test-convert-hg-startrev.t (13.69s)test-show-work.t (29.77s)test-narrow-strip.t#flat#lfs-off (10.50s)test-narrow-strip.t#flat#lfs-on (11.81s)test-narrow-strip.t#tree#lfs-off (10.36s)test-narrow-strip.t#tree#lfs-on (11.66s)test-repo-compengines.t (13.89s)test-merge-commit.t (11.00s)test-audit-path.t (17.98s)test-exchange-obsmarkers-case-B4.t (15.55s)test-fastannotate.t (15.80s)test-narrow-expanddirstate.t (8.17s)test-purge.t (16.14s)test-symlinks.t (17.64s)test-exchange-obsmarkers-case-C4.t (13.05s)test-sparse-revlog.t (0.22s)test-mq-safety.t (19.38s)test-directaccess.t (12.33s)test-exchange-obsmarkers-case-A6.t (13.88s)test-exchange-obsmarkers-case-A5.t (12.47s)test-basic.t (7.89s)test-remotefilelog-local.t (0.19s)test-narrow-share.t#flat (25.08s)test-narrow-share.t#tree (25.23s)test-hgweb-csp.t (26.81s)test-histedit-bookmark-motion.t (9.19s)test-obsolete-tag-cache.t (6.16s)test-diff-binary-file.t (7.33s)test-casefolding.t (27.72s)test-mq-git.t (8.39s)test-mq-qfold.t (14.53s)test-remotefilelog-cacheprocess.t (0.16s)test-patchbomb-bookmark.t (4.97s)test-stack.t (17.38s)test-journal-share.t (8.66s)test-paths.t (11.84s)test-contrib-testparseutil.t (0.55s)test-hgweb-no-request-uri.t (1.86s)test-sparse-merges.t (17.08s)test-pathconflicts-merge.t (15.95s)test-releasenotes-parsing.t (0.17s)test-diff-indent-heuristic.t#bdiff (1.24s)test-diff-indent-heuristic.t#xdiff (1.56s)test-import-merge.t (17.20s)test-drawdag.t (13.08s)test-patchbomb-tls.t (5.78s)test-exchange-obsmarkers-case-B2.t (12.27s)test-convert-p4.t (0.19s)test-show-stack.t (19.05s)test-narrow-clone-nonlinear.t (27.45s)test-config.t (8.38s)test-mq-eol.t (9.53s)test-exchange-obsmarkers-case-A4.t (10.87s)test-convert-bzr-directories.t (0.23s)test-obsmarkers-effectflag.t (18.16s)test-rename-merge1.t (20.20s)test-fastannotate-renames.t (12.86s)test-histedit-drop.t (9.39s)test-rebase-mq-skip.t#continuecommand (16.47s)test-rebase-mq-skip.t#continueflag (16.44s)test-bookmarks-merge.t (14.42s)test-lock-badness.t (0.20s)test-repair-strip.t (0.16s)test-histedit-outgoing.t (11.50s)test-pull.t#sshv1 (14.19s)test-pull.t#sshv2 (14.84s)test-exchange-obsmarkers-case-B6.t (10.72s)test-merge-default.t (10.44s)test-extension-timing.t (1.19s)test-match.py (0.38s)test-rebase-emptycommit.t (13.89s)test-cbor.py (0.80s)test-debugbundle.t (4.00s)test-copy-move-merge.t (12.91s)test-profile.t (12.66s)test-convert-tla.t (0.19s)test-mq-qclone-http.t (31.27s)test-exchange-obsmarkers-case-A2.t (9.12s)test-exchange-obsmarkers-case-D2.t (10.31s)test-status-terse.t (10.31s)test-merge7.t (5.80s)test-phase-archived.t (5.80s)test-hgweb-no-path-info.t (1.86s)test-pathconflicts-update.t (13.62s)test-subrepo-missing.t (10.41s)test-show.t (8.02s)test-addremove-similar.t (10.11s)test-contrib.t (2.59s)test-unionrepo.t (11.38s)test-flags.t (0.19s)test-remotefilelog-gc.t (0.17s)test-commit-multiple.t (7.94s)test-commit-unresolved.t#abortcommand (11.94s)test-commit-unresolved.t#abortflag (11.72s)test-import-eol.t (13.14s)test-logtoprocess.t (0.17s)test-mq-missingfiles.t (11.83s)test-sparse-import.t (7.94s)test-rebase-transaction.t#continuecommand (9.92s)test-rebase-transaction.t#continueflag (10.02s)test-identify.t (23.75s)test-default-push.t (9.27s)test-merge-subrepos.t (11.33s)test-narrow-clone-no-ellipsis.t (34.34s)test-filebranch.t (6.11s)test-mq-qdelete.t (17.86s)test-convert-datesort.t (11.55s)test-sidedata.t (5.49s)test-update-atomic.t (0.23s)test-mq-merge.t (11.70s)test-pull-r.t (11.09s)test-pending.t (8.64s)test-clone-update-order.t (7.39s)test-fastannotate-perfhack.t (11.75s)test-origbackup-conflict.t (8.38s)test-narrow-pull.t (22.84s)test-merge-local.t (8.81s)test-remotefilelog-http.t (0.19s)test-bugzilla.t (3.47s)test-exchange-obsmarkers-case-D3.t (11.53s)test-remote-hidden.t (9.42s)test-narrow-shallow.t (23.66s)test-worker.t (3.36s)test-merge-halt.t (9.58s)test-branch-option.t (12.11s)test-mac-packages.t (0.17s)test-empty-group.t (6.91s)test-parents.t (8.45s)test-fix-metadata.t (1.23s)test-http-branchmap.t (9.09s)test-children.t (8.44s)test-diff-change.t (9.62s)test-extdata.t (9.98s)test-bundle2-pushback.t#sshv1 (5.22s)test-bundle2-pushback.t#sshv2 (5.47s)test-rebuildstate.t (8.66s)test-mq-pull-from-bundle.t (10.08s)test-narrow-merge.t#flat (10.91s)test-narrow-merge.t#tree (10.91s)test-exchange-obsmarkers-case-B3.t (10.70s)test-remotefilelog-corrupt-cache.t (0.20s)test-amend-subrepo.t#obsstore-off (12.12s)test-amend-subrepo.t#obsstore-on (11.45s)test-merge-internal-tools-pattern.t (7.98s)test-run-tests.py (0.23s)test-issue672.t (5.11s)test-extensions-afterloaded.t (6.64s)test-tools.t (1.86s)test-fastannotate-corrupt.t (6.11s)test-narrow-commit.t#flat (11.36s)test-narrow-commit.t#tree (11.22s)test-eol-clone.t (4.20s)test-wireproto-serverreactor.py (0.45s)test-excessive-merge.t (6.22s)test-relink.t (4.73s)test-mq-qqueue.t (13.86s)test-narrow-rebase.t#continuecommand (10.48s)test-narrow-rebase.t#continueflag (10.84s)test-push-cgi.t (0.20s)test-record.t (1.73s)test-convert-darcs.t (0.19s)test-remotefilelog-clone-tree.t (0.19s)test-hgweb-non-interactive.t (1.36s)test-patch.t (4.69s)test-sqlitestore.t (0.17s)test-remotefilelog-clone.t (0.16s)test-arbitraryfilectx.t (2.83s)test-remotefilelog-sparse.t (0.17s)test-cache-abuse.t (22.17s)test-rebase-backup.t (8.97s)test-simple-update.t (7.44s)test-pathconflicts-basic.t (9.41s)test-committer.t (6.39s)test-exchange-obsmarkers-case-B7.t (9.70s)test-pull-http.t (10.61s)test-remotefilelog-bundle2-legacy.t (0.17s)test-exchange-obsmarkers-case-B1.t (9.61s)test-remotefilelog-log.t (0.19s)test-mq-qdiff.t (8.70s)test-bookmarks-rebase.t (7.83s)test-serve.t (11.80s)test-exchange-obsmarkers-case-A7.t (8.44s)test-revset-outgoing.t (5.94s)test-import-context.t (2.73s)test-remotefilelog-bundle2.t (0.19s)test-eol-add.t (4.72s)test-bundle-vs-outgoing.t (6.56s)test-rebase-partial.t (7.34s)test-mailmap.t (5.41s)test-update-names.t (7.92s)test-remotefilelog-bundles.t (0.20s)test-merge-remove.t (8.59s)test-convert-tagsbranch-topology.t (0.19s)test-requires.t (4.75s)test-locate.t (11.80s)test-merge-closedheads.t (11.55s)test-rename-after-merge.t (9.20s)test-wireproto-clientreactor.py (0.42s)test-contrib-dumprevlog.t (5.02s)test-remotefilelog-pull-noshallow.t (0.19s)test-debugextensions.t (2.14s)test-narrow-clone-stream.t#flat-fncache (31.55s)test-narrow-clone-stream.t#flat-nofncache (31.34s)test-narrow-clone-stream.t#tree (31.48s)test-rebase-legacy.t#continuecommand (2.95s)test-rebase-legacy.t#continueflag (2.73s)test-issue1306.t (4.25s)test-lfs-bundle.t (8.80s)test-issue1175.t (8.72s)test-cat.t (10.77s)test-nointerrupt.t (0.20s)test-issue660.t (9.41s)test-largefiles-small-disk.t (2.30s)test-convert-clonebranches.t (8.09s)test-oldcgi.t (0.20s)test-impexp-branch.t (6.58s)test-histedit-no-backup.t#abortcommand (4.38s)test-histedit-no-backup.t#abortflag (4.58s)test-narrow-clone-non-narrow-server.t (16.50s)test-issue586.t (8.00s)test-unified-test.t (1.50s)test-rebase-templates.t (5.86s)test-remotefilelog-tags.t (0.20s)test-symlink-placeholder.t (4.94s)test-merge6.t (6.03s)test-narrow-copies.t (7.94s)test-server-view.t (8.97s)test-rebase-issue-noparam-single-rev.t (7.78s)test-dirstate.t (5.31s)test-close-head.t (5.94s)test-url-download.t (13.48s)test-merge-revert2.t (10.36s)test-verify-repo-operations.py (0.17s)test-addremove.t (7.67s)test-mq-qrename.t (13.78s)test-narrow-update.t (8.41s)test-mq-symlinks.t (11.72s)test-ssh-repoerror.t (0.17s)test-wsgirequest.py (0.50s)test-double-merge.t (3.12s)test-narrow-patch.t#flat (3.73s)test-narrow-patch.t#tree (3.81s)test-glog-topological.t (2.88s)test-sparse-verbose-json.t (5.39s)test-merge9.t (6.08s)test-context-metadata.t (3.62s)test-patch-offset.t (1.25s)test-log-exthook.t (1.80s)test-newcgi.t (0.17s)test-issue1802.t (0.16s)test-update-reverse.t (4.55s)test-wireproto-command-branchmap.t (4.66s)test-pushvars.t (4.16s)test-histedit-templates.t (3.94s)test-hgwebdirsym.t (14.06s)test-manifest.py (3.02s)test-revlog-raw.py (1.36s)test-merge-symlinks.t (2.66s)test-branch-tag-confict.t (3.30s)test-custom-filters.t (2.84s)test-narrow-debugcommands.t (3.86s)test-sparse-clone.t (3.12s)test-issue2137.t (1.39s)test-remotefilelog-partial-shallow.t (0.17s)test-eolfilename.t (0.17s)test-merge10.t (4.72s)test-journal-exists.t (2.94s)test-revlog-v2.t (2.80s)test-diffdir.t (6.22s)test-schemes.t (6.19s)test-issue522.t (3.73s)test-histedit-merge-tools.t (3.52s)test-mq-qgoto.t (9.22s)test-newercgi.t (0.19s)test-revlog.t (2.25s)test-url.py (0.30s)test-editor-filename.t (2.33s)test-import-unknown.t (6.91s)test-unbundlehash.t (4.66s)test-narrow-sparse.t#flat (4.06s)test-narrow-sparse.t#tree (4.34s)test-wireproto-command-known.t (2.98s)test-missing-capability.t (3.66s)test-wireproto-command-listkeys.t (3.94s)test-convert-identity.t (4.55s)test-merge-revert.t (10.41s)test-wireproto-command-heads.t (3.95s)test-encode.t (4.92s)test-permissions.t (0.20s)test-casecollision.t (0.19s)test-ancestor.py (1.30s)test-update-dest.t (3.73s)test-known.t (8.91s)test-sparse-fsmonitor.t (0.06s)test-no-symlinks.t (0.19s)test-remotefilelog-datapack.py (0.91s)test-convert-authormap.t (2.75s)test-subrepo-paths.t (2.44s)test-debian-packages.t (0.25s)test-sparse-requirement.t (2.78s)test-confused-revert.t (5.94s)test-remotefilelog-permissions.t (0.19s)test-fuzz-targets.t (0.77s)test-issue1993.t (2.97s)test-issue1502.t (3.61s)test-clone-cgi.t (0.19s)test-sparse-clear.t (3.78s)test-simplemerge.py (0.34s)test-websub.t (3.48s)test-rebase-brute-force.t (6.92s)test-revlog-mmapindex.t (35.98s)test-merge2.t (7.80s)test-diff-antipatience.t#bdiff (1.12s)test-diff-antipatience.t#xdiff (1.42s)test-issue1877.t (5.09s)test-gpg.t (0.19s)test-empty-file.t (4.36s)test-lrucachedict.py (0.33s)test-hgk.t (2.88s)test-changelog-exec.t (0.19s)test-diff-hashes.t (2.91s)test-absorb-edit-lines.t (3.83s)test-mactext.t (1.91s)test-remotefilelog-wireproto.t (0.19s)test-convert-bzr-ghosts.t (0.20s)test-docker-packaging.t (0.20s)test-bookmarks-strip.t (4.31s)test-narrow-acl.t (5.83s)test-remotefilelog-keepset.t (0.19s)test-lock.py (0.39s)test-remotefilelog-histpack.py (0.59s)test-diff-subdir.t (2.81s)test-remotefilelog-bad-configs.t (0.20s)test-convert-bzr-114.t (0.20s)test-trusted.py (0.45s)test-narrow-debugrebuilddirstate.t (3.06s)test-unrelated-pull.t (3.05s)test-parseindex2.py (0.55s)test-diff-reverse.t (3.45s)test-revset-dirstate-parents.t (7.05s)test-wireproto-command-pushkey.t (2.78s)test-update-issue1456.t (0.19s)test-empty.t (2.30s)test-merge5.t (4.23s)test-wireproto-framing.py (0.34s)test-narrow-archive.t (5.62s)test-diff-copy-depth.t (6.53s)test-convert-bzr-treeroot.t (0.22s)test-hgweb-bundle.t (4.33s)test-absorb-unfinished.t (2.42s)test-mq-qimport-fail-cleanup.t (2.47s)test-fix-clang-format.t (0.19s)test-manifest-merging.t (2.86s)test-linerange.py (0.31s)test-issue619.t (3.12s)test-merge8.t (3.05s)test-issue842.t (3.52s)test-remotefilelog-blame.t (0.20s)test-linelog.py (3.31s)test-filecache.py (0.44s)test-revlog-group-emptyiter.t (2.56s)test-propertycache.py (0.84s)test-pathencode.py (0.80s)test-demandimport.py (0.47s)test-archive-symlinks.t (2.16s)test-absorb-strip.t (2.25s)test-pull-permission.t (0.20s)test-issue5979.t (4.09s)test-revisions.t (5.73s)test-rust-ancestor.py (0.19s)test-merge4.t (3.42s)test-absorb-filefixupstate.py (0.59s)test-wireproto-command-lookup.t (2.41s)test-phabricator.t (0.19s)test-context.py (0.91s)test-issue612.t (3.17s)test-debugindexdot.t (3.45s)test-eol-tag.t (2.31s)test-batching.py (0.45s)test-bdiff.py (0.33s)test-hgweb-auth.py (0.25s)test-nested-repo.t (3.95s)test-minirst.py (0.36s)test-execute-bit.t (0.20s)test-username-newline.t (1.39s)test-fastannotate-revmap.py (0.55s)test-issue4074.t (3.44s)test-remotefilelog-share.t (0.19s)test-revlog-packentry.t (1.88s)test-dirstate-nonnormalset.t (2.78s)test-ui-config.py (0.56s)test-diff-issue2761.t (3.03s)test-atomictempfile.py (0.34s)test-strict.t (2.55s)test-util.py (0.33s)test-diff-newlines.t (1.44s)test-rust-discovery.py (0.20s)test-empty-dir.t (2.22s)test-storage.py (3.75s)test-absorb-phase.t (2.72s)test-annotate.py (0.39s)test-extra-filelog-entry.t (2.09s)test-debugrename.t (2.94s)test-issue1438.t (2.75s)test-issue1102.t (2.39s)test-fastannotate-diffopts.t (1.42s)test-revert-unknown.t (2.53s)test-bad-pull.t (5.38s)test-revert-flags.t (0.19s)test-simplekeyvaluefile.py (0.34s)test-doctest.py (2.48s)test-issue1089.t (2.34s)test-backwards-remove.t (1.97s)test-wireproto.py (0.39s)test-contrib-emacs.t (0.17s)test-cappedreader.py (0.33s)test-xdg.t (0.19s)test-dirstate-backup.t (0.64s)test-mq-qsave.t (1.67s)test-encoding-func.py (0.20s)test-extensions-wrapfunction.py (0.38s)test-walkrepo.py (0.52s)test-revlog-ancestry.py (1.36s)test-ui-verbosity.py (0.48s)test-filelog.py (0.56s)test-sshserver.py (0.42s)test-hg-parseurl.py (0.55s)test-minifileset.py (0.42s)test-symlink-os-yes-fs-no.py (1.70s)test-config-env.py (0.41s)test-lfs-pointer.py (0.50s)test-duplicateoptions.py (0.67s)test-hgwebdir-paths.py (0.52s)test-ui-color.py (0.50s)test-dispatch.py (0.53s)test-status-inprocess.py (0.48s)test-mdiff.py (0.27s)