diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-10 16:49:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 16:49:23 (GMT) |
commit | f6e58aefde2e57e4cb11ea7743955da53a3f1e80 (patch) | |
tree | ae5a760fc2db639f50d8a08e600267b865ac852c /Lib/test/test_repl.py | |
parent | d36cf5f1d20ce9f111a8fc997104785086e8eee6 (diff) | |
download | cpython-f6e58aefde2e57e4cb11ea7743955da53a3f1e80.zip cpython-f6e58aefde2e57e4cb11ea7743955da53a3f1e80.tar.gz cpython-f6e58aefde2e57e4cb11ea7743955da53a3f1e80.tar.bz2 |
bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779)
test_repl.test_close_stdin() now calls
support.suppress_msvcrt_asserts() to fix the test on Windows.
* Move suppress_msvcrt_asserts() from test.libregrtest.setup to
test.support. Make its verbose parameter optional: verbose=False by
default.
* Add msvcrt.GetErrorMode().
* SuppressCrashReport now uses GetErrorMode() and SetErrorMode() of
the msvcrt module, rather than using ctypes.
* Remove also an unused variable (deadline) in wait_process().
Diffstat (limited to 'Lib/test/test_repl.py')
-rw-r--r-- | Lib/test/test_repl.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_repl.py b/Lib/test/test_repl.py index 563f188..03bf8d8 100644 --- a/Lib/test/test_repl.py +++ b/Lib/test/test_repl.py @@ -98,7 +98,11 @@ class TestInteractiveInterpreter(unittest.TestCase): print("before close") os.close(0) ''') - process = spawn_repl() + prepare_repl = dedent(''' + from test.support import suppress_msvcrt_asserts + suppress_msvcrt_asserts() + ''') + process = spawn_repl('-c', prepare_repl) output = process.communicate(user_input)[0] self.assertEqual(process.returncode, 0) self.assertIn('before close', output) |