diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-10-03 16:04:58 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-10-03 16:04:58 (GMT) |
commit | 312cef7452dcc8bb97ca6b20999d5db567406692 (patch) | |
tree | e3f305b6012ccfffa5ed6ea4895eabee6bd99c7b /PCbuild/pcbuild.proj | |
parent | 7fe091df42e25db5b6c7d955bffd0ff8db053f1f (diff) | |
download | cpython-312cef7452dcc8bb97ca6b20999d5db567406692.zip cpython-312cef7452dcc8bb97ca6b20999d5db567406692.tar.gz cpython-312cef7452dcc8bb97ca6b20999d5db567406692.tar.bz2 |
Issue #28217: Adds _testconsole module to test console input. Fixes some issues found by the tests.
Diffstat (limited to 'PCbuild/pcbuild.proj')
-rw-r--r-- | PCbuild/pcbuild.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj index c320434..e26bc70 100644 --- a/PCbuild/pcbuild.proj +++ b/PCbuild/pcbuild.proj @@ -61,7 +61,7 @@ <ExtensionModules Include="@(ExternalModules->'%(Identity)')" Condition="$(IncludeExternals)" /> <Projects Include="@(ExtensionModules->'%(Identity).vcxproj')" Condition="$(IncludeExtensions)" /> <!-- Test modules --> - <TestModules Include="_ctypes_test;_testbuffer;_testcapi;_testembed;_testimportmultiple;_testmultiphase" /> + <TestModules Include="_ctypes_test;_testbuffer;_testcapi;_testembed;_testimportmultiple;_testmultiphase;_testconsole" /> <TestModules Include="xxlimited" Condition="'$(Configuration)' == 'Release'" /> <Projects Include="@(TestModules->'%(Identity).vcxproj')" Condition="$(IncludeTests)"> <!-- Disable parallel build for test modules --> |