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 /Tools/msi/test | |
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 'Tools/msi/test')
-rw-r--r-- | Tools/msi/test/test_files.wxs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tools/msi/test/test_files.wxs b/Tools/msi/test/test_files.wxs index e803aa0..0753572 100644 --- a/Tools/msi/test/test_files.wxs +++ b/Tools/msi/test/test_files.wxs @@ -17,6 +17,9 @@ <Component Id="_testmultiphase.pyd" Directory="DLLs" Guid="*"> <File Id="_testmultiphase.pyd" Name="_testmultiphase.pyd" KeyPath="yes" /> </Component> + <Component Id="_testconsole.pyd" Directory="DLLs" Guid="*"> + <File Id="_testconsole.pyd" Name="_testconsole.pyd" KeyPath="yes" /> + </Component> </ComponentGroup> </Fragment> @@ -37,6 +40,9 @@ <Component Id="_testmultiphase.pdb" Directory="DLLs" Guid="*"> <File Id="_testmultiphase.pdb" Name="_testmultiphase.pdb" /> </Component> + <Component Id="_testconsole.pdb" Directory="DLLs" Guid="*"> + <File Id="_testconsole.pdb" Name="_testconsole.pdb" /> + </Component> </ComponentGroup> </Fragment> @@ -57,6 +63,9 @@ <Component Id="_testmultiphase_d.pyd" Directory="DLLs" Guid="*"> <File Id="_testmultiphase_d.pyd" Name="_testmultiphase_d.pyd" /> </Component> + <Component Id="_testconsole_d.pyd" Directory="DLLs" Guid="*"> + <File Id="_testconsole_d.pyd" Name="_testconsole_d.pyd" /> + </Component> <Component Id="_testcapi_d.pdb" Directory="DLLs" Guid="*"> <File Id="_testcapi_d.pdb" Name="_testcapi_d.pdb" /> </Component> @@ -72,6 +81,9 @@ <Component Id="_testmultiphase_d.pdb" Directory="DLLs" Guid="*"> <File Id="_testmultiphase_d.pdb" Name="_testmultiphase_d.pdb" /> </Component> + <Component Id="_testconsole_d.pdb" Directory="DLLs" Guid="*"> + <File Id="_testconsole_d.pdb" Name="_testconsole_d.pdb" /> + </Component> </ComponentGroup> </Fragment> </Wix> |