##// END OF EJS Templates
persistent-nodemap: also list related file as part of the store...
marmoute -
r46879:1cebad96 default
parent child Browse files
Show More
@@ -389,7 +389,7 b' def _calcmode(vfs):'
389
389
390
390
391 def isrevlog(f, kind, st):
391 def isrevlog(f, kind, st):
392 return kind == stat.S_IFREG and f[-2:] in (b'.i', b'.d')
392 return kind == stat.S_IFREG and f[-2:] in (b'.i', b'.d', b'.n', b'.nd')
393
393
394
394
395 class basicstore(object):
395 class basicstore(object):
@@ -617,8 +617,10 b' stream clone'
617 The persistent nodemap should exist after a streaming clone
617 The persistent nodemap should exist after a streaming clone
618
618
619 $ hg clone -U --stream --config ui.ssh="\"$PYTHON\" \"$TESTDIR/dummyssh\"" ssh://user@dummy/test-repo stream-clone --debug | egrep '00(changelog|manifest)'
619 $ hg clone -U --stream --config ui.ssh="\"$PYTHON\" \"$TESTDIR/dummyssh\"" ssh://user@dummy/test-repo stream-clone --debug | egrep '00(changelog|manifest)'
620 adding [s] 00manifest.n (70 bytes)
620 adding [s] 00manifest.i (313 KB)
621 adding [s] 00manifest.i (313 KB)
621 adding [s] 00manifest.d (452 KB)
622 adding [s] 00manifest.d (452 KB)
623 adding [s] 00changelog.n (70 bytes)
622 adding [s] 00changelog.i (313 KB)
624 adding [s] 00changelog.i (313 KB)
623 adding [s] 00changelog.d (360 KB)
625 adding [s] 00changelog.d (360 KB)
624 $ ls -1 stream-clone/.hg/store/ | egrep '00(changelog|manifest)(\.n|-.*\.nd)'
626 $ ls -1 stream-clone/.hg/store/ | egrep '00(changelog|manifest)(\.n|-.*\.nd)'
General Comments 0
You need to be logged in to leave comments. Login now