diff options
Diffstat (limited to 'Lib/test/test_eintr.py')
-rw-r--r-- | Lib/test/test_eintr.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_eintr.py b/Lib/test/test_eintr.py index a1907e8d98..aabad835a0 100644 --- a/Lib/test/test_eintr.py +++ b/Lib/test/test_eintr.py @@ -17,8 +17,7 @@ class EINTRTests(unittest.TestCase): # thread (for reliable signal delivery). tester = support.findfile("eintr_tester.py", subdir="eintrdata") - # FIXME: Issue #25122, always run in verbose mode to debug hang on FreeBSD - if True: #support.verbose: + if support.verbose: args = [sys.executable, tester] with subprocess.Popen(args) as proc: exitcode = proc.wait() |