mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
bpo-36725: regrtest: add TestResult type (GH-12960)
* Add TestResult and MultiprocessResult types to ensure that results always have the same fields. * runtest() now handles KeyboardInterrupt * accumulate_result() and format_test_result() now takes a TestResult * cleanup_test_droppings() is now called by runtest() and mark the test as ENV_CHANGED if the test leaks support.TESTFN file. * runtest() now includes code "around" the test in the test timing * Add print_warning() in test.libregrtest.utils to standardize how libregrtest logs warnings to ease parsing the test output. * support.unload() is now called with abstest rather than test_name * Rename 'test' variable/parameter to 'test_name' * dash_R(): remove unused the_module parameter * Remove unused imports
This commit is contained in:
parent
9db0324712
commit
4d29983185
8 changed files with 305 additions and 227 deletions
|
|
@ -1,8 +1,7 @@
|
|||
import subprocess
|
||||
import sys
|
||||
import os
|
||||
import _winapi
|
||||
import msvcrt
|
||||
import os
|
||||
import subprocess
|
||||
import uuid
|
||||
from test import support
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue