Mercurial > evolve
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-share.t Sun Apr 07 19:53:53 2019 +0200 @@ -0,0 +1,18 @@ +Test that share-clones use the cache in the original repository. + + $ hg init share-base + $ cd share-base/ + $ cat >> .hg/hgrc <<EOF + > [extensions] + > evolve= + > share= + > EOF + $ hg debugbuilddag .+3:branchpoint+4*branchpoint+2 + $ cd .. + $ hg --config extensions.share= share -U share-base share-client + $ cd share-client + $ hg debugupdatecache + $ test -d .hg/cache + [1] + $ test -d ../share-base/.hg/cache +