diff --git a/tests/run-tests.py b/tests/run-tests.py index f6987f65435688d62124e7e1cc93f4c9481f6ec5_dGVzdHMvcnVuLXRlc3RzLnB5..08f5482a67552a18c0c1ce4a932395c0d16f037c_dGVzdHMvcnVuLXRlc3RzLnB5 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1106,6 +1106,12 @@ # IP addresses. env['LOCALIP'] = _strpath(self._localip()) + # This has the same effect as Py_LegacyWindowsStdioFlag in exewrapper.c, + # but this is needed for testing python instances like dummyssh, + # dummysmtpd.py, and dumbhttp.py. + if PYTHON3 and os.name == 'nt': + env['PYTHONLEGACYWINDOWSSTDIO'] = '1' + # Reset some environment variables to well-known values so that # the tests produce repeatable output. env['LANG'] = env['LC_ALL'] = env['LANGUAGE'] = 'C'