]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-46576: bpo-46524: Disable compiler optimization within test_peg_generator. (...
authorGregory P. Smith <greg@krypto.org>
Wed, 2 Feb 2022 20:15:16 +0000 (12:15 -0800)
committerGitHub <noreply@github.com>
Wed, 2 Feb 2022 20:15:16 +0000 (12:15 -0800)
commit164a017e13ee96bd1ea1ae79f5ac9e25fe83994e
treed3590954116a047264807497fdf5b9fdf13c16a8
parent89a0a90c2e0e685bc70206fc45e4413c4f4411ed
bpo-46576: bpo-46524: Disable compiler optimization within test_peg_generator. (#31015)

Disable compiler optimization within test_peg_generator.

This speed up test_peg_generator by always disabling compiler
optimizations by using -O0 or equivalent when the test is building its
own C extensions.

A build not using --with-pydebug in order to speed up test execution
winds up with this test taking a very long time as it would do
repeated compilation of parser C code using the same optimization
flags as CPython was built with.

This speeds the test up 6-8x on gps-raspbian.

Also incorporate's #31017's win32 conditional and flags.

Co-authored-by: Kumar Aditya kumaraditya303
Misc/NEWS.d/next/Tests/2022-01-29-12-37-53.bpo-46576.-prRaV.rst [new file with mode: 0644]
Tools/peg_generator/pegen/build.py