diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-11-15 07:17:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 07:17:52 (GMT) |
commit | ee821dcd3961efc47262322848267fe398faa4e4 (patch) | |
tree | adc9aade39b45979d729efcd39ffeaa0480462a3 /PCbuild | |
parent | 1df0752b4d49103654abbc75c06b4dc0cf99de1c (diff) | |
download | cpython-ee821dcd3961efc47262322848267fe398faa4e4.zip cpython-ee821dcd3961efc47262322848267fe398faa4e4.tar.gz cpython-ee821dcd3961efc47262322848267fe398faa4e4.tar.bz2 |
gh-93649: Split pytime and datetime tests from _testcapimodule.c (#99494)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_testcapi.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/_testcapi.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/_testcapi.vcxproj b/PCbuild/_testcapi.vcxproj index fc9e159..90b951c 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -99,6 +99,8 @@ <ClCompile Include="..\Modules\_testcapi\vectorcall_limited.c" /> <ClCompile Include="..\Modules\_testcapi\heaptype.c" /> <ClCompile Include="..\Modules\_testcapi\unicode.c" /> + <ClCompile Include="..\Modules\_testcapi\pytime.c" /> + <ClCompile Include="..\Modules\_testcapi\datetime.c" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc" /> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index fd936a6..504898d 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -27,6 +27,12 @@ <ClCompile Include="..\Modules\_testcapi\unicode.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\pytime.c"> + <Filter>Source Files</Filter> + </ClCompile> + <ClCompile Include="..\Modules\_testcapi\datetime.c"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc"> |