[3.13] gh-121605: Fix test hang when pyrepl is not available (GH-121820) (GH-121823)

The fallback repl does not support "exit" without parentheses, so the
test would hang until the timeout expired.
(cherry picked from commit 4134261ab8)

Co-authored-by: Sam Gross <colesbury@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-07-16 01:15:18 +02:00 committed by GitHub
parent 5b718e7fc7
commit 0201b98d4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -901,7 +901,7 @@ class TestMain(TestCase):
def test_exposed_globals_in_repl(self):
pre = "['__annotations__', '__builtins__'"
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:
self.skipTest("pyrepl not available")
self.assertEqual(exit_code, 0)