tests/test-requires.t
author Ion Savin <comp_@gmx.net>
Fri, 09 Dec 2011 14:14:30 +0200
changeset 15631 e5fd140a4e69
parent 14746 72e4fcb43227
child 16913 f2719b387380
permissions -rw-r--r--
annotate: show full changeset hash when invoked with --debug and -c

  $ hg init t
  $ cd t
  $ echo a > a
  $ hg add a
  $ hg commit -m test
  $ rm .hg/requires
  $ hg tip
  abort: index 00changelog.i unknown format 2!
  [255]
  $ echo indoor-pool > .hg/requires
  $ hg tip
  abort: unknown repository format: requires features 'indoor-pool' (upgrade Mercurial)!
  [255]
  $ echo outdoor-pool >> .hg/requires
  $ hg tip
  abort: unknown repository format: requires features 'indoor-pool', 'outdoor-pool' (upgrade Mercurial)!
  [255]