##// END OF EJS Templates
tests: replace test tmp directory with $TESTTMP in test output...
tests: replace test tmp directory with $TESTTMP in test output This reduces the number of patterns that must be adjusted when writing tests.

File last commit:

r12587:e3247cea default
r12639:236058a6 default
Show More
test-subrepo-paths.t
32 lines | 621 B | text/troff | Tads3Lexer
/ tests / test-subrepo-paths.t
$ 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 */outer/.hg/hgrc:2: invalid group reference (glob)
[255]