tests/svnurlof.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 22 Feb 2021 12:21:00 +0100
changeset 46561 388a92023a1a
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
test-copies: introduce merge chains test for the P/Q merges This is similar to the chaining test we have for the A/E merges. The current result of this tests is wrong, as for the other test of the same familly. This will be fixed by a later changesets. Differential Revision: https://phab.mercurial-scm.org/D10059

from __future__ import absolute_import, print_function
import sys

from mercurial import (
    pycompat,
    util,
)


def main(argv):
    enc = util.urlreq.quote(pycompat.sysbytes(argv[1]))
    if pycompat.iswindows:
        fmt = 'file:///%s'
    else:
        fmt = 'file://%s'
    print(fmt % pycompat.sysstr(enc))


if __name__ == '__main__':
    main(sys.argv)