[PATCH] run-tests: conditionalize HGCATAPULTSERVERPIPE for Windows

Yuya Nishihara yuya at tcha.org
Thu Aug 30 07:30:03 EDT 2018


On Wed, 29 Aug 2018 23:55:22 -0400, Matt Harbison wrote:
> # HG changeset patch
> # User Matt Harbison <matt_harbison at yahoo.com>
> # Date 1535600398 14400
> #      Wed Aug 29 23:39:58 2018 -0400
> # Node ID cf1e74e80f0123f9a9fc4876035474d6dc525a3b
> # Parent  6827d3f47d4f1bab01a0cc92d7d9bfc52ee9f535
> run-tests: conditionalize HGCATAPULTSERVERPIPE for Windows
> 
> Many of the *.py tests were dying on:
> 
>     File "c:\Users\Matt\projects\hg\hgdemandimport\tracing.py", line 27, in log
>       _pipe = open(os.environ['HGCATAPULTSERVERPIPE'], 'w', 1)
>   IOError: [Errno 2] $ENOENT$: '/dev/null'
> 
> diff --git a/tests/run-tests.py b/tests/run-tests.py
> --- a/tests/run-tests.py
> +++ b/tests/run-tests.py
> @@ -1072,7 +1072,10 @@ class Test(unittest.TestCase):
>          env["HGHOSTNAME"] = "test-hostname"
>          env['HGIPV6'] = str(int(self._useipv6))
>          if 'HGCATAPULTSERVERPIPE' not in env:
> -            env['HGCATAPULTSERVERPIPE'] = '/dev/null'
> +            if os.name == 'nt':
> +                env['HGCATAPULTSERVERPIPE'] = 'NUL'
> +            else:
> +                env['HGCATAPULTSERVERPIPE'] = '/dev/null'

Maybe os.devnull can be used instead.


More information about the Mercurial-devel mailing list