Mercurial > hg-stable
view tests/test-hgignore @ 1562:2f97af0b522c
Fix walkhelper on windows.
The ''seen'' dictionary stores paths in canonical form,
so the walkhelp must also provide paths in that form,
otherwise the changed files are listed twice.
author | Christian Boos <cboos@neuf.fr> |
---|---|
date | Thu, 01 Dec 2005 10:48:18 -0600 |
parents | 91c0e8d7ddcf |
children | 1d7d0c07e8f3 |
line wrap: on
line source
#!/bin/sh hg init touch a.o touch a.c touch syntax mkdir dir touch dir/a.o touch dir/b.o touch dir/c.o hg add dir/a.o hg commit -m 0 hg add dir/b.o echo "--" ; hg status echo "*.o" > .hgignore echo "--" ; hg status echo ".*\.o" > .hgignore echo "--" ; hg status # XXX: broken #echo "glob:**.o" > .hgignore #echo "--" ; hg status # #echo "glob:*.o" > .hgignore #echo "--" ; hg status echo "syntax: invalid" > .hgignore echo "--" ; hg status echo "syntax: glob" > .hgignore echo "*.o" >> .hgignore echo "--" ; hg status echo "relglob:syntax*" > .hgignore echo "--" ; hg status echo "relglob:*" > .hgignore echo "--" ; hg status cd dir echo "--" ; hg status