aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/libregrtest/single.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/libregrtest/single.py')
-rw-r--r--Lib/test/libregrtest/single.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/libregrtest/single.py b/Lib/test/libregrtest/single.py
index 5c7bc7d40fb..eafeb5fe26f 100644
--- a/Lib/test/libregrtest/single.py
+++ b/Lib/test/libregrtest/single.py
@@ -237,11 +237,11 @@ def _runtest(result: TestResult, runtests: RunTests) -> None:
output_on_failure = runtests.output_on_failure
timeout = runtests.timeout
- use_timeout = (
- timeout is not None and threading_helper.can_start_thread
- )
- if use_timeout:
+ if timeout is not None and threading_helper.can_start_thread:
+ use_timeout = True
faulthandler.dump_traceback_later(timeout, exit=True)
+ else:
+ use_timeout = False
try:
setup_tests(runtests)