[Request] [+ ] D8647: run-tests: replace '#' with '-' in temp path of repos created for tests
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Mon Jun 22 09:36:35 UTC 2020
pulkit created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
If we have multiple cases in a test, that leads us to a temp path of
format "<temp-path>-<case1>#<case2>".
This leads to hg.parseurl() parsing the path and take part
after `#` as a branch name.
I encountered this bug while adding support for share-safe case in next patch.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D8647
AFFECTED FILES
tests/run-tests.py
CHANGE DETAILS
diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -1595,7 +1595,7 @@
casepath = b'#'.join(case)
self.name = '%s#%s' % (self.name, _bytes2sys(casepath))
self.errpath = b'%s#%s.err' % (self.errpath[:-4], casepath)
- self._tmpname += b'-%s' % casepath
+ self._tmpname += b'-%s' % casepath.replace(b'#', b'-')
self._have = {}
@property
To: pulkit, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200622/b968f460/attachment.html>
More information about the Mercurial-patches
mailing list