diff options
author | Neil Schemenauer <nas-github@arctrix.com> | 2019-07-30 18:08:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 18:08:18 (GMT) |
commit | 52a48e62c6a94577152f9301bbe5f3bc806cfcf1 (patch) | |
tree | f19f86065e0217b3db53f90995cd6e806596f83b /Misc | |
parent | 27eeaf0f2c9bd53a0fbdfdf38ee759e971221f8d (diff) | |
download | cpython-52a48e62c6a94577152f9301bbe5f3bc806cfcf1.zip cpython-52a48e62c6a94577152f9301bbe5f3bc806cfcf1.tar.gz cpython-52a48e62c6a94577152f9301bbe5f3bc806cfcf1.tar.bz2 |
bpo-37707: Exclude expensive unit tests from PGO task (GH-15009)
Mark some individual tests to skip when --pgo is used. The tests
marked increase the PGO task time significantly and likely don't
help improve optimization of the final executable.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-07-29-11-36-16.bpo-37707.Sm-dGk.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-07-29-11-36-16.bpo-37707.Sm-dGk.rst b/Misc/NEWS.d/next/Build/2019-07-29-11-36-16.bpo-37707.Sm-dGk.rst new file mode 100644 index 0000000..c0d58ab --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-07-29-11-36-16.bpo-37707.Sm-dGk.rst @@ -0,0 +1,3 @@ +Mark some individual tests to skip when --pgo is used. The tests marked +increase the PGO task time significantly and likely don't help improve +optimization of the final executable. |