Mercurial > public > mercurial-scm > hg
diff tests/test-fncache @ 8633:c31fe74a6633
store encoding: .i/.d encoding for non-store repo (broken by 810387f59696)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 26 May 2009 23:49:53 +0200 |
parents | 6c82beaaa11a |
children | 2816239e0020 |
line wrap: on
line diff
--- a/tests/test-fncache Tue May 26 22:59:52 2009 +0200 +++ b/tests/test-fncache Tue May 26 23:49:53 2009 +0200 @@ -48,4 +48,23 @@ echo "% hg verify" hg verify +# try non store repo encoding +cd .. +echo % non store repo +hg --config format.usestore=False init foo +cd foo +mkdir tst.d +echo foo > tst.d/foo +hg ci -Amfoo +ls -R .hg + +cd .. +echo % non fncache repo +hg --config format.usefncache=False init bar +cd bar +mkdir tst.d +echo foo > tst.d/Foo +hg ci -Amfoo +ls -R .hg + exit 0