diff options
author | Jurica Bradarić <jbradaric@users.noreply.github.com> | 2023-05-12 09:26:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 09:26:07 (GMT) |
commit | 19ee53d52e8adf267dfd588c2142967734a3b65a (patch) | |
tree | e7d963dcf359c4f447fa8d68c018c6cb2a066c6f /PCbuild | |
parent | b2c1b4da1935639cb89fbbad0ce170a1182537bd (diff) | |
download | cpython-19ee53d52e8adf267dfd588c2142967734a3b65a.zip cpython-19ee53d52e8adf267dfd588c2142967734a3b65a.tar.gz cpython-19ee53d52e8adf267dfd588c2142967734a3b65a.tar.bz2 |
gh-93649: Split gc- and allocation tests from _testcapimodule.c (GH-104403)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_testcapi.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_testcapi.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/_testcapi.vcxproj b/PCbuild/_testcapi.vcxproj index 350f97f..3db9426 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -113,6 +113,7 @@ <ClCompile Include="..\Modules\_testcapi\buffer.c" /> <ClCompile Include="..\Modules\_testcapi\pyos.c" /> <ClCompile Include="..\Modules\_testcapi\immortal.c" /> + <ClCompile Include="..\Modules\_testcapi\gc.c" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc" /> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index af80f1e..8df4874 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -66,6 +66,9 @@ <ClCompile Include="..\Modules\_testcapi\pyos.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\gc.c"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc"> |