tests/svnurlof.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 13 Dec 2019 10:37:45 +0100
branchstable
changeset 44328 60bc043d7df7
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
test: pin the number of CPU for issue4074 tests On machine with an hundreds of CPUs, the "user" CPU time reported can be inflated by the status steps. Since the test especially focus on the diff computation, we restrict the number of CPU to avoid potential issues. Differential Revision: https://phab.mercurial-scm.org/D8112

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)