summaryrefslogtreecommitdiffstats
path: root/PCbuild/pcbuild.proj
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2020-12-08 16:36:53 (GMT)
committerGitHub <noreply@github.com>2020-12-08 16:36:53 (GMT)
commitc168b5078f88874b9acd993ac886f82269c780dd (patch)
treee4c2b04e56d9be570f7d7f33c4f8d1d0a180e6f9 /PCbuild/pcbuild.proj
parent4aa67853cc7d6ed4f9ebb726ceaa2c89f9feabda (diff)
downloadcpython-c168b5078f88874b9acd993ac886f82269c780dd.zip
cpython-c168b5078f88874b9acd993ac886f82269c780dd.tar.gz
cpython-c168b5078f88874b9acd993ac886f82269c780dd.tar.bz2
bpo-42111: Make the xxlimited module an example of best extension module practices (GH-23226)
- Copy existing xxlimited to xxlimited53 (named for the limited API version it uses) - Build both modules, both in debug and release - Test both modules
Diffstat (limited to 'PCbuild/pcbuild.proj')
-rw-r--r--PCbuild/pcbuild.proj1
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj
index 4d416c5..8e7088d 100644
--- a/PCbuild/pcbuild.proj
+++ b/PCbuild/pcbuild.proj
@@ -66,6 +66,7 @@
<!-- Test modules -->
<TestModules Include="_ctypes_test;_testbuffer;_testcapi;_testinternalcapi;_testembed;_testimportmultiple;_testmultiphase;_testconsole" />
<TestModules Include="xxlimited" Condition="'$(Configuration)' == 'Release'" />
+ <TestModules Include="xxlimited_35" Condition="'$(Configuration)' == 'Release'" />
<Projects Include="@(TestModules->'%(Identity).vcxproj')" Condition="$(IncludeTests)">
<!-- Disable parallel build for test modules -->
<BuildInParallel>false</BuildInParallel>