Turn on Text Buffer unit tests in Azure DevOps CI build (#1057)

* rename TextBuffer.UnitTests.dll -> TextBuffer.Unit.Tests.dll

* renamed the project file as well
This commit is contained in:
Michael Ratanapintha 2019-05-29 19:51:17 -07:00 committed by Dustin L. Howett (MSFT)
parent e2b5fecd48
commit d24d647c0d
6 changed files with 10 additions and 6 deletions

View file

@ -71,7 +71,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Host.Tests.Unit", "src\host
{06EC74CB-9A12-429C-B551-8562EC954747} = {06EC74CB-9A12-429C-B551-8562EC954747} {06EC74CB-9A12-429C-B551-8562EC954747} = {06EC74CB-9A12-429C-B551-8562EC954747}
EndProjectSection EndProjectSection
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TextBuffer.UnitTests", "src\buffer\out\ut_textbuffer\TextBuffer.UnitTests.vcxproj", "{531C23E7-4B76-4C08-8BBD-04164CB628C9}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TextBuffer.Unit.Tests", "src\buffer\out\ut_textbuffer\TextBuffer.Unit.Tests.vcxproj", "{531C23E7-4B76-4C08-8BBD-04164CB628C9}"
ProjectSection(ProjectDependencies) = postProject ProjectSection(ProjectDependencies) = postProject
{0CF235BD-2DA0-407E-90EE-C467E8BBC714} = {0CF235BD-2DA0-407E-90EE-C467E8BBC714} {0CF235BD-2DA0-407E-90EE-C467E8BBC714} = {0CF235BD-2DA0-407E-90EE-C467E8BBC714}
EndProjectSection EndProjectSection

View file

@ -21,8 +21,8 @@
<ProjectGuid>{531C23E7-4B76-4C08-8BBD-04164CB628C9}</ProjectGuid> <ProjectGuid>{531C23E7-4B76-4C08-8BBD-04164CB628C9}</ProjectGuid>
<Keyword>Win32Proj</Keyword> <Keyword>Win32Proj</Keyword>
<RootNamespace>TextBufferUnitTests</RootNamespace> <RootNamespace>TextBufferUnitTests</RootNamespace>
<ProjectName>TextBuffer.UnitTests</ProjectName> <ProjectName>TextBuffer.Unit.Tests</ProjectName>
<TargetName>TextBuffer.UnitTests</TargetName> <TargetName>TextBuffer.Unit.Tests</TargetName>
</PropertyGroup> </PropertyGroup>
<ItemDefinitionGroup> <ItemDefinitionGroup>
<ClCompile> <ClCompile>

View file

@ -1,6 +1,7 @@
@echo off @echo off
rem Run the console feature tests. rem Run the console feature tests.
rem Keep this file in sync with tests.xml
call %TAEF% ^ call %TAEF% ^
%OPENCON%\bin\%ARCH%\Debug\ConHost.Feature.Tests.dll ^ %OPENCON%\bin\%ARCH%\Debug\ConHost.Feature.Tests.dll ^

View file

@ -1,6 +1,7 @@
@echo off @echo off
rem Run the console UI Automation tests. rem Run the console UI Automation tests.
rem Keep this file in sync with tests.xml
rem Get AppDriver going first... You'll have to close it yourself. rem Get AppDriver going first... You'll have to close it yourself.

View file

@ -1,10 +1,11 @@
@echo off @echo off
rem Run the console unit tests. rem Run the console unit tests.
rem Keep this file in sync with tests.xml
call %TAEF% ^ call %TAEF% ^
%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Conhost.Unit.Tests.dll ^ %OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Conhost.Unit.Tests.dll ^
%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\TextBuffer.Unittests.dll ^ %OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\TextBuffer.Unit.Tests.dll ^
%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Terminal.Core.Unit.Tests.dll ^ %OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Terminal.Core.Unit.Tests.dll ^
%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Conhost.Interactivity.Win32.Unit.Tests.dll ^ %OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\Conhost.Interactivity.Win32.Unit.Tests.dll ^
%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\ConParser.Unit.Tests.dll ^ %OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\ConParser.Unit.Tests.dll ^

View file

@ -1,7 +1,8 @@
<!-- Used by Invoke-OpenConsoleTests in OpenConsole.psm1. Keep in sync with runABC.cmd files -->
<tests> <tests>
<test name="host" type="unit" binary="Conhost.Unit.Tests.dll" /> <test name="host" type="unit" binary="Conhost.Unit.Tests.dll" />
<test name="textbuffer" type="unit" binary="TextBuffer.Unittests.dll" /> <test name="textBuffer" type="unit" binary="TextBuffer.Unit.Tests.dll" />
<test name="terminalCore" type="unit" binary="Terminal.Core.Unit.Tests.dll" />
<test name="interactivityWin32" type="unit" binary="Conhost.Interactivity.Win32.Unit.Tests.dll" /> <test name="interactivityWin32" type="unit" binary="Conhost.Interactivity.Win32.Unit.Tests.dll" />
<test name="terminal" type="unit" binary="ConParser.Unit.Tests.dll" /> <test name="terminal" type="unit" binary="ConParser.Unit.Tests.dll" />
<test name="adapter" type="unit" binary="ConAdapter.Unit.Tests.dll" /> <test name="adapter" type="unit" binary="ConAdapter.Unit.Tests.dll" />