mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
gh-121605: Fix test hang when pyrepl is not available (GH-121820)
The fallback repl does not support "exit" without parentheses, so the test would hang until the timeout expired.
This commit is contained in:
parent
e5c7216f37
commit
4134261ab8
1 changed files with 1 additions and 1 deletions
|
|
@ -901,7 +901,7 @@ def setUp(self):
|
||||||
def test_exposed_globals_in_repl(self):
|
def test_exposed_globals_in_repl(self):
|
||||||
pre = "['__annotations__', '__builtins__'"
|
pre = "['__annotations__', '__builtins__'"
|
||||||
post = "'__loader__', '__name__', '__package__', '__spec__']"
|
post = "'__loader__', '__name__', '__package__', '__spec__']"
|
||||||
output, exit_code = self.run_repl(["sorted(dir())", "exit"])
|
output, exit_code = self.run_repl(["sorted(dir())", "exit()"])
|
||||||
if "can't use pyrepl" in output:
|
if "can't use pyrepl" in output:
|
||||||
self.skipTest("pyrepl not available")
|
self.skipTest("pyrepl not available")
|
||||||
self.assertEqual(exit_code, 0)
|
self.assertEqual(exit_code, 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue