* Android now runs tests with --pythoninfo to dump build information.
* Add display_title() function.
# Randomization is disabled because order-dependent failures are
# much less likely to pass on a rerun in single-process mode.
"-m", "test",
- f"--{context.ci_mode}-ci", "--single-process", "--no-randomize"
+ f"--{context.ci_mode}-ci", "--single-process", "--no-randomize",
+ "--pythoninfo",
]
if not any(arg in context.args for arg in ["-c", "-m"]):
help='remove old test_python_* directories')
group.add_argument('--bisect', action='store_true',
help='if some tests fail, run test.bisect_cmd on them')
+ group.add_argument('--pythoninfo', action='store_true',
+ help="run python -m test.pythoninfo before tests")
group.add_argument('--dont-add-python-opts', dest='_add_python_opts',
action='store_false',
help="internal option, don't use it")
strip_py_suffix, count, format_duration,
printlist, get_temp_dir, get_work_dir, exit_timeout,
display_header, cleanup_temp_dir, print_warning,
- is_cross_compiled, get_host_runner,
+ is_cross_compiled, get_host_runner, display_title,
EXIT_TIMEOUT)
self.coverage: bool = ns.trace
self.coverage_dir: StrPath | None = ns.coverdir
self._tmp_dir: StrPath | None = ns.tempdir
+ self.pythoninfo: bool = ns.pythoninfo
# Randomize
self.randomize: bool = ns.randomize
title = f"Bisect {test}"
if progress:
title = f"{title} ({progress})"
- print(title)
- print("#" * len(title))
- print()
+ display_title(title)
cmd = runtests.create_python_cmd()
cmd.extend([
exitcode = proc.returncode
title = f"{title}: exit code {exitcode}"
- print(title)
- print("#" * len(title))
- print(flush=True)
+ display_title(title)
if exitcode:
print(f"Bisect failed with exit code {exitcode}")
)
return self._tmp_dir
+ def run_pythoninfo(self):
+ from test import pythoninfo
+ try:
+ pythoninfo.main()
+ except SystemExit:
+ # Ignore non-zero exit code on purpose
+ pass
+ print()
+
def main(self, tests: TestList | None = None) -> NoReturn:
if self.want_add_python_opts:
self._add_python_opts()
if self.want_wait:
input("Press any key to continue...")
+ if self.pythoninfo:
+ self.run_pythoninfo()
+
setup_test_dir(self.test_dir)
selected, tests = self.find_tests(tests)
def sanitize_xml(text: str) -> str:
return ILLEGAL_XML_CHARS_RE.sub(_sanitize_xml_replace, text)
+
+
+def display_title(title):
+ print(title)
+ print("#" * len(title))
+ print(flush=True)
def dump_info(info, file=None):
- title = "Python debug information"
+ title = "Python build information"
print(title)
- print("=" * len(title))
+ print("#" * len(title))
print()
infos = info.get_infos()
self.assertEqual(regrtest.num_workers, 0)
self.assertTrue(regrtest.single_process)
+ def test_pythoninfo(self):
+ ns = self.parse_args([])
+ self.assertFalse(ns.pythoninfo)
+
+ ns = self.parse_args(['--pythoninfo'])
+ self.assertTrue(ns.pythoninfo)
+
@dataclasses.dataclass(slots=True)
class Rerun:
self.assertNotIn('test_re', tests)
self.assertEqual(len(tests), len(pgo_tests) - 1)
+ def test_pythoninfo(self):
+ testname = self.create_test()
+ output = self.run_tests('--pythoninfo', testname)
+ self.assertIn("Python build information", output)
+
class TestUtils(unittest.TestCase):
def test_format_duration(self):