tests/test-issue1089.t
author Manuel Jacob <me@manueljacob.de>
Mon, 01 Jun 2020 14:34:22 +0200
changeset 44901 53b3baaadb64
parent 35393 4441705b7111
child 49621 55c6ebd11cb9
permissions -rw-r--r--
sslutil: propagate return value ssl.PROTOCOL_SSLv23 from protocolsettings() Also, protocolsettings() was renamed to commonssloptions() to reflect that only the options are returned.

https://bz.mercurial-scm.org/1089

  $ hg init
  $ mkdir a
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b
  $ hg ci -m m a

  $ mkdir a b
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..