Skip to content

Commit e1b9002

Browse files
zoobamiss-islington
authored andcommitted
bpo-36044: Avoid warnings in Windows PGO build and add lzma, bz2 and sqlite coverage (pythonGH-14985)
https://bugs.python.org/issue36044 Automerge-Triggered-By: @zooba
1 parent 049460d commit e1b9002

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Lib/test/libregrtest/pgo.py

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
'test_binop',
1111
'test_bisect',
1212
'test_bytes',
13+
'test_bz2',
1314
'test_cmath',
1415
'test_codecs',
1516
'test_collections',
@@ -29,6 +30,7 @@
2930
'test_itertools',
3031
'test_json',
3132
'test_long',
33+
'test_lzma',
3234
'test_math',
3335
'test_memoryview',
3436
'test_operator',
@@ -37,6 +39,7 @@
3739
'test_pprint',
3840
'test_re',
3941
'test_set',
42+
'test_sqlite',
4043
'test_statistics',
4144
'test_struct',
4245
'test_tabnanny',

PCbuild/_msi.vcxproj

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
<ProjectGuid>{31FFC478-7B4A-43E8-9954-8D03E2187E9C}</ProjectGuid>
7171
<RootNamespace>_msi</RootNamespace>
7272
<Keyword>Win32Proj</Keyword>
73+
<SupportPGO>false</SupportPGO>
7374
</PropertyGroup>
7475
<Import Project="python.props" />
7576
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

PCbuild/winsound.vcxproj

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
<ProjectGuid>{28B5D777-DDF2-4B6B-B34F-31D938813856}</ProjectGuid>
7171
<RootNamespace>winsound</RootNamespace>
7272
<Keyword>Win32Proj</Keyword>
73+
<SupportPGO>false</SupportPGO>
7374
</PropertyGroup>
7475
<Import Project="python.props" />
7576
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

0 commit comments

Comments
 (0)