diff tests/test-revlog.t @ 49238:6aae0e1ecdbc

test-revlog: adds a non-root revision with a delta against nullrev Using a revision with non-null parents makes it a different case that is worthy of testing.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 27 May 2022 02:52:46 +0200
parents 75d0775dce7f
children a94f28be2e6e
line wrap: on
line diff
--- a/tests/test-revlog.t	Fri May 27 03:14:23 2022 +0200
+++ b/tests/test-revlog.t	Fri May 27 02:52:46 2022 +0200
@@ -78,6 +78,9 @@
   $ hg debugdeltachain a
       rev      p1      p2  chain# chainlen     prev   delta       size    rawsize  chainsize     ratio   lindist extradist extraratio   readsize largestblk rddensity srchunks
         0      -1      -1       1        2       -1      p1         15          3         15   5.00000        15         0    0.00000         15         15   1.00000        1
+        1       0      -1       1        2       -1      p2         15          3         15   5.00000        30        15    1.00000         30         30   0.50000        1
   $ hg cat --config rhg.cat=true -r 0 a
   hi
+  $ hg cat --config rhg.cat=true -r 1 a
+  ho
   $ cd ..