comparison tests/test-share.t @ 4487:d972041022cb

evolve: when using evolve, cache files belong into the master repo
author Joerg Sonnenberger <joerg@bec.de>
date Sun, 07 Apr 2019 19:53:53 +0200
parents
children 6c0992ce05f7
comparison
equal deleted inserted replaced
4478:94743877e50b 4487:d972041022cb
1 Test that share-clones use the cache in the original repository.
2
3 $ hg init share-base
4 $ cd share-base/
5 $ cat >> .hg/hgrc <<EOF
6 > [extensions]
7 > evolve=
8 > share=
9 > EOF
10 $ hg debugbuilddag .+3:branchpoint+4*branchpoint+2
11 $ cd ..
12 $ hg --config extensions.share= share -U share-base share-client
13 $ cd share-client
14 $ hg debugupdatecache
15 $ test -d .hg/cache
16 [1]
17 $ test -d ../share-base/.hg/cache
18