Mercurial > hg
view tests/test-casecollision.t @ 14179:64481eee6215
hgext: fixup a couple missed file().read() instances
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 03 May 2011 21:53:13 -0500 |
parents | 524c560e2d32 |
children | 14e44933d175 |
line wrap: on
line source
run only on case-sensitive filesystems $ "$TESTDIR/hghave" no-icasefs || exit 80 test file addition with colliding case $ hg init repo1 $ cd repo1 $ echo a > a $ echo A > A $ hg add a $ hg st A a ? A $ hg add --config ui.portablefilenames=abort A abort: possible case-folding collision for A [255] $ hg st A a ? A $ hg add A warning: possible case-folding collision for A $ hg st A A A a $ hg forget A $ hg st A a ? A $ hg add --config ui.portablefilenames=no A $ hg st A A A a case changing rename must not warn or abort $ echo c > c $ hg ci -qAmx $ hg mv c C $ cd ..