Mercurial > hg
view tests/test-fncache @ 7329:fd4bf5269733
Do not abort with inotify extension enabled, but not supported by the system.
And remove the "native support is required" message which is generated at an
inappropriate location and is printed more than once when using 'hg status'.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 07 Nov 2008 13:02:04 +0100 |
parents | a3871028aacf |
children | 6c82beaaa11a |
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 -d '0 0' -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 -d '0 0' -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 -d '0 0' -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