tests/test-casecollision.t
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Tue, 27 Dec 2011 20:45:46 +0100
changeset 15736 306e84e8bbe9
parent 14178 524c560e2d32
child 17096 14e44933d175
permissions -rw-r--r--
rebase: allow --detach when --rev is used --rev is only a more specific --source and there is no reason to refuse to use detach with it.

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 ..