tests/test-requires.t
author David Soria Parra <dsp@php.net>
Mon, 21 Feb 2011 22:22:12 +0100
branchstable
changeset 13453 c1b808020819
parent 12346 3b165c127690
child 13956 ffb5c09ba822
permissions -rw-r--r--
bookmarks: issue a warning if remote doesn't support comparing bookmarks We want to issue a warning and abort comparing bookmarks if remote doesn't support it. Otherwise hg out -B will list you outgoing bookmarks that cannot be pushed to the remote repository using hg push -B.

  $ mkdir t
  $ cd t
  $ hg init
  $ 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: requirement 'indoor-pool' not supported!
  [255]