From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 17 Jun 2025 05:37:39 +0000 (+0200) Subject: [3.14] gh-135489: Show verbose output for failing tests during PGO profiling step... X-Git-Tag: v3.14.0b3~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2292c29f7f626e412ee827c4dce9a3777b115db;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-135489: Show verbose output for failing tests during PGO profiling step with `--enable-optimizations` (#135599) (cherry picked from commit 5b3a826888ed3b598dc4bcdc6a48d5f6ae231f8d) Co-authored-by: PuQing --- diff --git a/Lib/test/libregrtest/single.py b/Lib/test/libregrtest/single.py index 57d7b649d2ef..958a915626ad 100644 --- a/Lib/test/libregrtest/single.py +++ b/Lib/test/libregrtest/single.py @@ -283,7 +283,7 @@ def _runtest(result: TestResult, runtests: RunTests) -> None: try: setup_tests(runtests) - if output_on_failure: + if output_on_failure or runtests.pgo: support.verbose = True stream = io.StringIO() diff --git a/Misc/NEWS.d/next/Tests/2025-06-14-13-20-17.gh-issue-135489.Uh0yVO.rst b/Misc/NEWS.d/next/Tests/2025-06-14-13-20-17.gh-issue-135489.Uh0yVO.rst new file mode 100644 index 000000000000..2c9ecc518293 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2025-06-14-13-20-17.gh-issue-135489.Uh0yVO.rst @@ -0,0 +1 @@ +Show verbose output for failing tests during PGO profiling step with --enable-optimizations.