sapling/tests/test-subrepo-paths.t

33 lines
621 B
Perl
Raw Normal View History

2010-08-17 18:52:42 +04:00
$ hg init outer
$ cd outer
hg debugsub with no remapping
2010-08-17 18:52:42 +04:00
$ 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
2010-08-17 18:52:42 +04:00
$ hg debugsub
path sub
source C:\libs\foo-lib\
2010-08-17 18:52:42 +04:00
revision
test bad subpaths pattern
$ cat > .hg/hgrc <<EOF
> [subpaths]
> .* = \1
> EOF
$ hg debugsub
abort: bad subrepository pattern in */outer/.hg/hgrc:2: invalid group reference (glob)
2010-09-17 02:51:32 +04:00
[255]