Mercurial > hg
diff tests/test-schemes @ 11154:17031fea4e95 stable
expand paths to local repository or bundle in appropriate classes
This avoids problem with unexpanded paths when it's not possible to
expand it at higher level (for example, if file:~/path/ is supplied as
path in schemes).
author | Alexander Solovyov <piranha@piranha.org.ua> |
---|---|
date | Mon, 07 Dec 2009 12:31:45 +0200 |
parents | 9d1195b2f00d |
children |
line wrap: on
line diff
--- a/tests/test-schemes Tue May 11 20:13:52 2010 +0200 +++ b/tests/test-schemes Mon Dec 07 12:31:45 2009 +0200 @@ -7,6 +7,7 @@ [schemes] l = http://localhost:$HGPORT/ parts = http://{1}:$HGPORT/ +z = file:\$PWD/ EOF hg init test @@ -22,5 +23,8 @@ echo % check that {1} syntax works hg incoming --debug parts://localhost | sed 's/[0-9]//g' +echo % check that paths are expanded +PWD=`pwd` hg incoming z:// + echo % errors cat errors.log