branch | stable |
changeset 11545 | db9d16233787 |
parent 10944 | 6f1894d6a6b0 |
--- a/tests/test-inotify Fri Jul 02 15:05:21 2010 +0900 +++ b/tests/test-inotify Tue Jul 06 22:22:18 2010 -0300 @@ -97,4 +97,17 @@ echo b >> 1844/foo hg ci 1844 -m 'broken' +# Test for issue884: "Build products not ignored until .hgignore is touched" +echo '^build$' > .hgignore +hg add .hgignore +hg ci .hgignore -m 'ignorelist' + +# Now, lets add some build products... +mkdir build +touch build/x +touch build/y + +# build/x & build/y shouldn't appear in "hg st" +hg st + kill `cat hg.pid`