Mercurial > hg
view tests/test-fncache @ 8475:caaf1e779b37
templater: replace regex complexity by simple str containment checks
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Sun, 17 May 2009 16:06:48 +0200 |
parents | 6c82beaaa11a |
children | c31fe74a6633 |
line wrap: on
line source
#!/bin/sh echo "% init repo1" hg init repo1 cd repo1 echo echo "% add a; ci" echo "some text" > a hg add hg ci -m first echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% add a.i/b; ci" mkdir a.i echo "some other text" > a.i/b hg add hg ci -m second echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% add a.i.hg/c; ci" mkdir a.i.hg echo "yet another text" > a.i.hg/c hg add hg ci -m third echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% hg verify" hg verify echo echo "% rm .hg/store/fncache" rm .hg/store/fncache echo echo "% hg verify" hg verify exit 0