diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-11-14 21:23:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 21:23:41 (GMT) |
commit | 3d9431983a89b14250716c1d227e2ce40b343bdd (patch) | |
tree | 77bd8caeef1695e8daebfd44f9fc8aea2c2f308a /PCbuild | |
parent | a088290f9d53a6bd078de6ee67b2fa296fc1cc14 (diff) | |
download | cpython-3d9431983a89b14250716c1d227e2ce40b343bdd.zip cpython-3d9431983a89b14250716c1d227e2ce40b343bdd.tar.gz cpython-3d9431983a89b14250716c1d227e2ce40b343bdd.tar.bz2 |
gh-93649: Split getargs tests from _testcapimodule.c (#99346)
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 b7d40c8..fc9e159 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -94,6 +94,7 @@ </PropertyGroup> <ItemGroup> <ClCompile Include="..\Modules\_testcapimodule.c" /> + <ClCompile Include="..\Modules\_testcapi\getargs.c" /> <ClCompile Include="..\Modules\_testcapi\vectorcall.c" /> <ClCompile Include="..\Modules\_testcapi\vectorcall_limited.c" /> <ClCompile Include="..\Modules\_testcapi\heaptype.c" /> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index fc2c434..fd936a6 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -12,6 +12,9 @@ <ClCompile Include="..\Modules\_testcapimodule.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\getargs.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Modules\_testcapi\vectorcall.c"> <Filter>Source Files</Filter> </ClCompile> |