tests/test-requires.t
author Patrick Mezard <patrick@mezard.eu>
Wed, 11 Jul 2012 17:05:20 +0200
changeset 17162 868c256cb51b
parent 16913 f2719b387380
child 19778 55ef79031009
permissions -rw-r--r--
graphlog: remove unused get_revs() function

  $ 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]

  $ cd ..