##// END OF EJS Templates
inotify: adding test for issue1556
inotify: adding test for issue1556

File last commit:

r8167:6c82beaa default
r8601:021de2d1 default
Show More
test-fncache
51 lines | 629 B | text/plain | TextLexer
Adrian Buehlmann
add test-fncache
r7290 #!/bin/sh
echo "% init repo1"
hg init repo1
cd repo1
echo
echo "% add a; ci"
echo "some text" > a
hg add
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m first
Adrian Buehlmann
add test-fncache
r7290
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
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m second
Adrian Buehlmann
add test-fncache
r7290
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
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m third
Adrian Buehlmann
add test-fncache
r7290
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