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): |
@@ -626,8 +626,10 b' stream clone' | |||||
626 | The persistent nodemap should exist after a streaming clone |
|
626 | The persistent nodemap should exist after a streaming clone | |
627 |
|
627 | |||
628 | $ hg clone -U --stream --config ui.ssh="\"$PYTHON\" \"$TESTDIR/dummyssh\"" ssh://user@dummy/test-repo stream-clone --debug | egrep '00(changelog|manifest)' |
|
628 | $ hg clone -U --stream --config ui.ssh="\"$PYTHON\" \"$TESTDIR/dummyssh\"" ssh://user@dummy/test-repo stream-clone --debug | egrep '00(changelog|manifest)' | |
|
629 | adding [s] 00manifest.n (70 bytes) | |||
629 | adding [s] 00manifest.i (313 KB) |
|
630 | adding [s] 00manifest.i (313 KB) | |
630 | adding [s] 00manifest.d (452 KB) |
|
631 | adding [s] 00manifest.d (452 KB) | |
|
632 | adding [s] 00changelog.n (70 bytes) | |||
631 | adding [s] 00changelog.i (313 KB) |
|
633 | adding [s] 00changelog.i (313 KB) | |
632 | adding [s] 00changelog.d (360 KB) |
|
634 | adding [s] 00changelog.d (360 KB) | |
633 | $ ls -1 stream-clone/.hg/store/ | egrep '00(changelog|manifest)(\.n|-.*\.nd)' |
|
635 | $ 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