tests/test-subrepo-paths.t
author Brodie Rao <brodie@bitheap.org>
Tue, 04 Jan 2011 00:24:34 +1100
branchstable
changeset 13642 994510694b1d
parent 12640 6cc4b14fb76b
child 13578 e720b3324e35
permissions -rw-r--r--
pager: don't page stderr if it's being redirected (issue2541)

  $ hg init outer
  $ cd outer

hg debugsub with no remapping

  $ echo 'sub = http://example.net/libfoo' > .hgsub
  $ hg add .hgsub

  $ hg debugsub
  path sub
   source   http://example.net/libfoo
   revision 

hg debugsub with remapping

  $ echo '[subpaths]' > .hg/hgrc
  $ printf 'http://example.net/lib(.*) = C:\\libs\\\\1-lib\\\n' >> .hg/hgrc

  $ hg debugsub
  path sub
   source   C:\libs\foo-lib\
   revision 

test bad subpaths pattern

  $ cat > .hg/hgrc <<EOF
  > [subpaths]
  > .* = \1
  > EOF
  $ hg debugsub
  abort: bad subrepository pattern in $TESTTMP/outer/.hg/hgrc:2: invalid group reference
  [255]