diff tests/dummyssh @ 47859:155a2ec8a9dc

merge with stable
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 22 Aug 2021 16:32:06 -0400
parents fb8389f227a0
children 6000f5b25c9b
line wrap: on
line diff
--- a/tests/dummyssh	Tue Jul 20 17:20:19 2021 +0200
+++ b/tests/dummyssh	Sun Aug 22 16:32:06 2021 -0400
@@ -31,5 +31,5 @@
     hgcmd = shlex.join(cmds)
     # shlex generate windows incompatible string...
     hgcmd = hgcmd.replace("'", '"')
-r = subprocess.call(hgcmd, shell=True)
+r = subprocess.call(hgcmd, shell=True, close_fds=True)
 sys.exit(bool(r))