diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-10-25 08:33:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 08:33:12 (GMT) |
commit | b2ba2985275d1200e5c44c3f224d754141fc5292 (patch) | |
tree | e1610ec77d986d4eb34c24a598fc2260f4cf960d /PCbuild | |
parent | 0d1cbff833f761f80383f4ce5fe31f686f3f04eb (diff) | |
download | cpython-b2ba2985275d1200e5c44c3f224d754141fc5292.zip cpython-b2ba2985275d1200e5c44c3f224d754141fc5292.tar.gz cpython-b2ba2985275d1200e5c44c3f224d754141fc5292.tar.bz2 |
gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111067)
* Move existing tests for PySys_GetObject() and PySys_SetObject() into
specialized files.
* Add test for PySys_GetXOptions() using _testcapi.
* Add tests for PySys_FormatStdout(), PySys_FormatStderr(),
PySys_WriteStdout() and PySys_WriteStderr() using ctypes.
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 0f33c5a..ae97c34 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -115,6 +115,7 @@ <ClCompile Include="..\Modules\_testcapi\buffer.c" /> <ClCompile Include="..\Modules\_testcapi\pyatomic.c" /> <ClCompile Include="..\Modules\_testcapi\pyos.c" /> + <ClCompile Include="..\Modules\_testcapi\sys.c" /> <ClCompile Include="..\Modules\_testcapi\immortal.c" /> <ClCompile Include="..\Modules\_testcapi\gc.c" /> </ItemGroup> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index 4ba6011..c3ad256 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -72,6 +72,9 @@ <ClCompile Include="..\Modules\_testcapi\pyos.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\sys.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Modules\_testcapi\gc.c"> <Filter>Source Files</Filter> </ClCompile> |