# HG changeset patch # User Pierre-Yves David # Date 2021-07-11 14:57:53 # Node ID 119673fb37aa41e4879307fab0d76a0820ca45a4 # Parent e1130abae834a960c0f223f24eb256f5a3f09e69 dummyssh: use subprocess instead of os.call Welcome in 2020 Differential Revision: https://phab.mercurial-scm.org/D11082 diff --git a/tests/dummyssh b/tests/dummyssh --- a/tests/dummyssh +++ b/tests/dummyssh @@ -3,6 +3,7 @@ from __future__ import absolute_import import os +import subprocess import sys os.chdir(os.getenv('TESTTMP')) @@ -22,5 +23,5 @@ hgcmd = sys.argv[2] if os.name == 'nt': # hack to make simple unix single quote quoting work on windows hgcmd = hgcmd.replace("'", '"') -r = os.system(hgcmd) +r = subprocess.call(hgcmd, shell=True) sys.exit(bool(r))