microsoft / azure-pipelines-tasks

Tasks for Azure Pipelines
https://aka.ms/tfbuild
MIT License
3.47k stars 2.6k forks source link

MSTestV2 update will not execute C++ tests using default runsettings #11738

Closed Lawls91 closed 4 years ago

Lawls91 commented 4 years ago

Note

Issues in this repo are for tracking bugs, feature requests and questions for the tasks in this repo

For a list:
https://github.com/Microsoft/azure-pipelines-tasks/tree/master/Tasks

If you have an issue or request for the Azure Pipelines service, use developer community instead:

https://developercommunity.visualstudio.com/spaces/21/index.html )

Required Information

Entering this information will route you directly to the right team and expedite traction.

Question, Bug, or Feature?
Type: Bug

Enter Task Name: VsTestV2

Environment

Issue Description

Our VSTestV2 task updated to 2.160.2 from 2.159.1. Since then, C++ Unit tests will not execute. Error:

[error]The active test run was aborted. Reason: Test host process crashed

I have filtered this down to the CodeCoverage node in the default generated runsettings file, which have changed from:

    <Sources>
        <Exclude>
            <Source>.*\\atlmfc\\.*</Source>
            <Source>.*\\vctools\\.*</Source>
            <Source>.*\\public\\sdk\\.*</Source>
            <Source>.*\\microsoft sdks\\.*</Source>
            <Source>.*\\vc\\include\\.*</Source>
        </Exclude>
    </Sources>

to:

    <Sources>
        <Exclude>
            <Source>.*\atlmfc\.*</Source>
            <Source>.*\vctools\.*</Source>
            <Source>.*\public\sdk\.*</Source>
            <Source>.*\microsoft sdks\.*</Source>
            <Source>.*\vc\include\.*</Source>
        </Exclude>
    </Sources>

Rolling back to the previous sources exclusions allows the tests to run.

Task logs

[Enable debug logging and please provide the zip file containing all the logs for a speedy resolution]

Troubleshooting

Checkout how to troubleshoot failures and collect debug logs: https://docs.microsoft.com/en-us/vsts/build-release/actions/troubleshooting

Error logs

[Insert error from the logs here for a quick overview]

goozdev commented 4 years ago

We have faced the same issue, since the auto-upgrade from 2.159.1 to 2.160.2. Using the original .runsettings with '\\' we solved the issue for us.

See related issue: https://github.com/microsoft/azure-pipelines-tasks/issues/11750

jayaranigarg commented 4 years ago

@Lawls91: Please try the resolution suggested by @frankiee88 and let us know if that works for you!

Lawls91 commented 4 years ago

@Lawls91: Please try the resolution suggested by @frankiee88 and let us know if that works for you!

As I said in my original post when I first posted it:

Rolling back to the previous sources exclusions allows the tests to run.

We currently have a runsettings file committed to bypass this issue, but i believe this should be resolved and reviewed as it broke our live CI environment

jayaranigarg commented 4 years ago

@frankiee88 @Lawls91 : Apologies for the inconvenience. We have fixed this issue in 2.160.4 version of task. 2.160.4 version of task has been rolled out and should have been auto-upgraded by now. Please let us know if that fixes the issue for you!

Lawls91 commented 4 years ago

So, this seems fixed now by 2.160.4, which is great. However I have noticed the default generated runsettings file is no longer output into out (or debug) stream. Having that information was key to analysing our issue. Was this a change made on purpose?

Thanks

jayaranigarg commented 4 years ago

@Lawls91 : There are no changes in regards to runsettings being displayed in out stream. Can you share the build logs with us with system.debug set to true for us to analyse and see what might be the issue here?

Lawls91 commented 4 years ago

Sure. As you can see, example 1 (before the issue occured) shows the default generated runsettings file. Output 2 (after the issue was fixed) just shows a super empty runsettings with just batch settings in it (can be seen after the "Updated Run Settings" output):

Pre-Fix (No system.debug, no .runsettingsfile passed in)

2019-11-11T15:14:54.9913823Z ##[section]Starting: Run Tests
2019-11-11T15:14:55.0264102Z ==============================================================================
2019-11-11T15:14:55.0264184Z Task         : Visual Studio Test
2019-11-11T15:14:55.0264232Z Description  : Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).
2019-11-11T15:14:55.0264272Z Version      : 2.159.1
2019-11-11T15:14:55.0264306Z Author       : Microsoft Corporation
2019-11-11T15:14:55.0264355Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/test/vstest
2019-11-11T15:14:55.0264389Z ==============================================================================
2019-11-11T15:14:57.8993944Z SystemVssConnection exists true
2019-11-11T15:15:01.1765926Z SystemVssConnection exists true
2019-11-11T15:15:01.3703802Z SystemVssConnection exists true
2019-11-11T15:15:01.5464778Z Running tests using vstest.console.exe runner.
2019-11-11T15:15:01.5464886Z ======================================================
2019-11-11T15:15:01.5465269Z Test selector : Test assemblies
2019-11-11T15:15:01.5465343Z Test filter criteria : null
2019-11-11T15:15:01.5465413Z Search folder : C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\1\s
2019-11-11T15:15:01.5466167Z VisualStudio version selected for test execution : 16.0
2019-11-11T15:15:01.5466363Z Attempting to find vstest.console from a visual studio installation with version [15.0,17.0).
2019-11-11T15:15:01.5906405Z Run in parallel : false
2019-11-11T15:15:01.5908086Z Run in isolation : true
2019-11-11T15:15:01.5908493Z Path to custom adapters : null
2019-11-11T15:15:01.5914016Z Other console options : /Platform:x64
2019-11-11T15:15:01.5915603Z Code coverage enabled : true
2019-11-11T15:15:01.5920181Z Diagnostics enabled : false
2019-11-11T15:15:01.5928152Z SystemVssConnection exists true
2019-11-11T15:15:01.5972019Z Run the tests locally using vstest.console.exe
2019-11-11T15:15:01.5972186Z ========================================================
2019-11-11T15:15:01.7049986Z Source filter: x64\Releas*\*Tests.dll,!Unit Tests\**
2019-11-11T15:15:01.7588181Z SystemVssConnection exists true
2019-11-11T15:15:01.7601365Z [command]C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.159.1\Modules\DTAExecutionHost.exe --inputFile C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\input_0834b960-0496-11ea-9fec-ada7639675da.json
2019-11-11T15:15:02.1900382Z ======================================================
2019-11-11T15:15:02.4790641Z ##########################################################################
2019-11-11T15:15:02.4793543Z DtaExecutionHost version 18.159.29407.1.
2019-11-11T15:15:03.1263299Z Starting TestExecution Model...
2019-11-11T15:15:06.1116705Z Updated Run Settings:
2019-11-11T15:15:06.1126984Z <RunSettings>
2019-11-11T15:15:06.1127137Z   <DataCollectionRunSettings>
2019-11-11T15:15:06.1127195Z     <DataCollectors>
2019-11-11T15:15:06.1127291Z       <DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
2019-11-11T15:15:06.1127378Z         <Configuration>
2019-11-11T15:15:06.1127442Z           <CodeCoverage>
2019-11-11T15:15:06.1127531Z             <ModulePaths>
2019-11-11T15:15:06.1127583Z               <Include>
2019-11-11T15:15:06.1127635Z                 <ModulePath>.*.dll$</ModulePath>
2019-11-11T15:15:06.1127692Z                 <ModulePath>.*.exe$</ModulePath>
2019-11-11T15:15:06.1127765Z               </Include>
2019-11-11T15:15:06.1127856Z               <Exclude>
2019-11-11T15:15:06.1129350Z                 <ModulePath>.*CPPUnitTestFramework.*</ModulePath>
2019-11-11T15:15:06.1129407Z               </Exclude>
2019-11-11T15:15:06.1129529Z             </ModulePaths>
2019-11-11T15:15:06.1129578Z             <Functions>
2019-11-11T15:15:06.1129626Z               <Exclude>
2019-11-11T15:15:06.1129693Z                 <Function>^Fabrikam\\.UnitTest\\..*</Function>
2019-11-11T15:15:06.1129746Z                 <Function>^std::.*</Function>
2019-11-11T15:15:06.1129796Z                 <Function>^ATL::.*</Function>
2019-11-11T15:15:06.1129864Z                 <Function>.*::__GetTestMethodInfo.*</Function>
2019-11-11T15:15:06.1129920Z                 <Function>^Microsoft::VisualStudio::CppCodeCoverageFramework::.*</Function>
2019-11-11T15:15:06.1129977Z                 <Function>^Microsoft::VisualStudio::CppUnitTestFramework::.*</Function>
2019-11-11T15:15:06.1130027Z               </Exclude>
2019-11-11T15:15:06.1130107Z             </Functions>
2019-11-11T15:15:06.1130163Z             <Attributes>
2019-11-11T15:15:06.1130212Z               <Exclude>
2019-11-11T15:15:06.1130280Z                 <Attribute>^System\\.Diagnostics\\.DebuggerHiddenAttribute$</Attribute>
2019-11-11T15:15:06.1130334Z                 <Attribute>^System\\.Diagnostics\\.DebuggerNonUserCodeAttribute$</Attribute>
2019-11-11T15:15:06.1130392Z                 <Attribute>^System\\.Runtime\\.CompilerServices.CompilerGeneratedAttribute$</Attribute>
2019-11-11T15:15:06.1130467Z                 <Attribute>^System\\.CodeDom\\.Compiler.GeneratedCodeAttribute$</Attribute>
2019-11-11T15:15:06.1130526Z                 <Attribute>^System\\.Diagnostics\\.CodeAnalysis.ExcludeFromCodeCoverageAttribute$</Attribute>
2019-11-11T15:15:06.1130576Z               </Exclude>
2019-11-11T15:15:06.1130625Z             </Attributes>
2019-11-11T15:15:06.1130688Z             <Sources>
2019-11-11T15:15:06.1130756Z               <Exclude>
2019-11-11T15:15:06.1130818Z                 <Source>.*\\atlmfc\\.*</Source>
2019-11-11T15:15:06.1130861Z                 <Source>.*\\vctools\\.*</Source>
2019-11-11T15:15:06.1130911Z                 <Source>.*\\public\\sdk\\.*</Source>
2019-11-11T15:15:06.1130947Z                 <Source>.*\\microsoft sdks\\.*</Source>
2019-11-11T15:15:06.1130983Z                 <Source>.*\\vc\\include\\.*</Source>
2019-11-11T15:15:06.1131031Z               </Exclude>
2019-11-11T15:15:06.1131064Z             </Sources>
2019-11-11T15:15:06.1131098Z             <CompanyNames>
2019-11-11T15:15:06.1131130Z               <Exclude>
2019-11-11T15:15:06.1131183Z                 <CompanyName>.*microsoft.*</CompanyName>
2019-11-11T15:15:06.1131217Z               </Exclude>
2019-11-11T15:15:06.1131249Z             </CompanyNames>
2019-11-11T15:15:06.1131301Z             <PublicKeyTokens>
2019-11-11T15:15:06.1131335Z               <Exclude>
2019-11-11T15:15:06.1131371Z                 <PublicKeyToken>^B77A5C561934E089$</PublicKeyToken>
2019-11-11T15:15:06.1131535Z                 <PublicKeyToken>^B03F5F7F11D50A3A$</PublicKeyToken>
2019-11-11T15:15:06.1131594Z                 <PublicKeyToken>^31BF3856AD364E35$</PublicKeyToken>
2019-11-11T15:15:06.1131631Z                 <PublicKeyToken>^89845DCD8080CC91$</PublicKeyToken>
2019-11-11T15:15:06.1131668Z                 <PublicKeyToken>^71E9BCE111E9429C$</PublicKeyToken>
2019-11-11T15:15:06.1131721Z                 <PublicKeyToken>^8F50407C4E9E73B6$</PublicKeyToken>
2019-11-11T15:15:06.1131758Z                 <PublicKeyToken>^E361AF139669C375$</PublicKeyToken>
2019-11-11T15:15:06.1131792Z               </Exclude>
2019-11-11T15:15:06.1131824Z             </PublicKeyTokens>
2019-11-11T15:15:06.1131878Z             <UseVerifiableInstrumentation>True</UseVerifiableInstrumentation>
2019-11-11T15:15:06.1131916Z             <AllowLowIntegrityProcesses>True</AllowLowIntegrityProcesses>
2019-11-11T15:15:06.1131953Z             <CollectFromChildProcesses>True</CollectFromChildProcesses>
2019-11-11T15:15:06.1132011Z             <CollectAspDotNet>False</CollectAspDotNet>
2019-11-11T15:15:06.1132384Z           </CodeCoverage>
2019-11-11T15:15:06.1132418Z         </Configuration>
2019-11-11T15:15:06.1132968Z       </DataCollector>
2019-11-11T15:15:06.1133062Z     </DataCollectors>
2019-11-11T15:15:06.1133096Z   </DataCollectionRunSettings>
2019-11-11T15:15:06.1133128Z   <RunConfiguration>
2019-11-11T15:15:06.1133161Z     <BatchSize>1000</BatchSize>
2019-11-11T15:15:06.1133220Z     <ResultsDirectory>C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\TestResults</ResultsDirectory>
2019-11-11T15:15:06.1133254Z   </RunConfiguration>
2019-11-11T15:15:06.1133286Z </RunSettings>
2019-11-11T15:15:06.1340152Z **************** Starting test execution *********************
2019-11-11T15:15:06.1858286Z [command]C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe "@C:\Users\account\AppData\Local\Temp\1\tmp7B72.tmp"
2019-11-11T15:15:06.3868716Z Microsoft (R) Test Execution Command Line Tool Version 16.1.0
2019-11-11T15:15:06.3869001Z Copyright (c) Microsoft Corporation.  All rights reserved.
2019-11-11T15:15:06.3980561Z vstest.console.exe
2019-11-11T15:15:06.3981340Z "C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\1\s\x64\ReleaseStatic\Tests.dll"
2019-11-11T15:15:06.3982816Z /Settings:"C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\huphoppktst.runsettings"
2019-11-11T15:15:06.3982862Z /EnableCodeCoverage
2019-11-11T15:15:06.3982897Z /InIsolation
2019-11-11T15:15:06.3982945Z /Logger:"trx"
2019-11-11T15:15:06.3982983Z /TestAdapterPath:"C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\1\s"
2019-11-11T15:15:06.3983024Z /Platform:x64
2019-11-11T15:15:06.8765545Z Starting test execution, please wait...
2019-11-11T15:15:10.7622645Z M�i�c�r�o�s�o�f�t� �(�R�)� �C�o�v�e�r�a�g�e� �C�o�l�l�e�c�t�i�o�n� �T�o�o�l� �V�e�r�s�i�o�n� �1�6�.�0�.�3�0�3�1�9�.�2�0�0�
2019-11-11T15:15:10.7622935Z �
2019-11-11T15:15:10.7622977Z �
2019-11-11T15:15:10.7623081Z �C�o�p�y�r�i�g�h�t� �(�c�)� �M�i�c�r�o�s�o�f�t� �C�o�r�p�o�r�a�t�i�o�n�.� � �A�l�l� �r�i�g�h�t�s� �r�e�s�e�r�v�e�d�.�
2019-11-11T15:15:10.7623118Z �
2019-11-11T15:15:10.7623150Z �
2019-11-11T15:15:10.7623182Z �
2019-11-11T15:15:10.7623231Z �
2019-11-11T15:15:10.8590886Z �2.4149
2019-11-11T15:15:57.4467457Z   √ TEST_TESNAME [< 1ms]
2019-11-11T15:16:12.3496412Z Results File: C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\TestResults\account_CLIENTBUILD04_2019-11-11_15_15_19.trx
2019-11-11T15:16:12.3522642Z Attachments:
2019-11-11T15:16:12.3523782Z   C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\TestResults\9e5e4569-b09a-4aef-88cb-9980c24ca116\account_CLIENTBUILD04 2019-11-11 15_15_10.coverage
2019-11-11T15:16:12.3524110Z Test Run Successful.
2019-11-11T15:16:12.3524205Z Total tests: 1080
2019-11-11T15:16:12.3525200Z      Passed: 1080
2019-11-11T15:16:12.3534001Z  Total time: 1.0175 Minutes
2019-11-11T15:16:12.3937356Z Vstest.console.exe exited with code 0.
2019-11-11T15:16:12.3937497Z **************** Completed test execution *********************
2019-11-11T15:16:12.3992401Z Test results files: C:\Users\account\Desktop\vsts-agent-win-x64-2.150.3\_work\_temp\TestResults\account_CLIENTBUILD04_2019-11-11_15_15_19.trx
2019-11-11T15:16:12.8431417Z Created test run: 1112708
2019-11-11T15:16:13.0464439Z Publishing test results: 1080
2019-11-11T15:16:13.0464588Z Publishing test results to test run '1112708'.
2019-11-11T15:16:13.0491254Z TestResults To Publish 1080, Test run id:1112708
2019-11-11T15:16:13.0654254Z Test results publishing 1000, remaining: 80. Test run id: 1112708
2019-11-11T15:16:13.7276092Z Test results publishing 80, remaining: 0. Test run id: 1112708
2019-11-11T15:16:13.8091756Z Published test results: 1080
2019-11-11T15:16:13.8098441Z Publishing Attachments: 2
2019-11-11T15:16:18.6613414Z Completed TestExecution Model...
2019-11-11T15:16:18.7122763Z ##[section]Finishing: Run Tests

Post-Fix (system.debug, no .runsettingsfile passed in)

2019-11-25T10:19:23.3090731Z ##[debug]Evaluating condition for step: 'Run Tests'
2019-11-25T10:19:23.3091444Z ##[debug]Evaluating: SucceededNode()
2019-11-25T10:19:23.3091522Z ##[debug]Evaluating SucceededNode:
2019-11-25T10:19:23.3091700Z ##[debug]=> True
2019-11-25T10:19:23.3091853Z ##[debug]Result: True
2019-11-25T10:19:23.3092028Z ##[section]Starting: Run Tests
2019-11-25T10:19:23.3438319Z ==============================================================================
2019-11-25T10:19:23.3438410Z Task         : Visual Studio Test
2019-11-25T10:19:23.3438460Z Description  : Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).
2019-11-25T10:19:23.3438519Z Version      : 2.160.4
2019-11-25T10:19:23.3438566Z Author       : Microsoft Corporation
2019-11-25T10:19:23.3438612Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/test/vstest
2019-11-25T10:19:23.3438658Z ==============================================================================
2019-11-25T10:19:24.2186220Z ##[debug]agent.TempDirectory=C:\agent\_work\_temp
2019-11-25T10:19:24.2246007Z ##[debug]loading inputs and endpoints
2019-11-25T10:19:24.2251359Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2019-11-25T10:19:24.2271801Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2019-11-25T10:19:24.2275481Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2019-11-25T10:19:24.2277456Z ##[debug]loading INPUT_BATCHINGBASEDONAGENTSOPTION
2019-11-25T10:19:24.2279038Z ##[debug]loading INPUT_BATCHINGBASEDONEXECUTIONTIMEOPTION
2019-11-25T10:19:24.2280555Z ##[debug]loading INPUT_CODECOVERAGEENABLED
2019-11-25T10:19:24.2282008Z ##[debug]loading INPUT_COLLECTDUMPON
2019-11-25T10:19:24.2283784Z ##[debug]loading INPUT_CUSTOMBATCHSIZEVALUE
2019-11-25T10:19:24.2285240Z ##[debug]loading INPUT_CUSTOMRUNTIMEPERBATCHVALUE
2019-11-25T10:19:24.2286556Z ##[debug]loading INPUT_DIAGNOSTICSENABLED
2019-11-25T10:19:24.2287856Z ##[debug]loading INPUT_DISTRIBUTIONBATCHTYPE
2019-11-25T10:19:24.2289300Z ##[debug]loading INPUT_DONTDISTRIBUTE
2019-11-25T10:19:24.2290605Z ##[debug]loading INPUT_OTHERCONSOLEOPTIONS
2019-11-25T10:19:24.2292025Z ##[debug]loading INPUT_PLATFORM
2019-11-25T10:19:24.2293465Z ##[debug]loading INPUT_PUBLISHRUNATTACHMENTS
2019-11-25T10:19:24.2294798Z ##[debug]loading INPUT_RERUNFAILEDTESTCASESMAXLIMIT
2019-11-25T10:19:24.2296273Z ##[debug]loading INPUT_RERUNFAILEDTESTS
2019-11-25T10:19:24.2297618Z ##[debug]loading INPUT_RERUNFAILEDTHRESHOLD
2019-11-25T10:19:24.2298930Z ##[debug]loading INPUT_RERUNMAXATTEMPTS
2019-11-25T10:19:24.2300441Z ##[debug]loading INPUT_RERUNTYPE
2019-11-25T10:19:24.2301932Z ##[debug]loading INPUT_RUNALLTESTSAFTERXBUILDS
2019-11-25T10:19:24.2303428Z ##[debug]loading INPUT_RUNINPARALLEL
2019-11-25T10:19:24.2304686Z ##[debug]loading INPUT_RUNONLYIMPACTEDTESTS
2019-11-25T10:19:24.2306130Z ##[debug]loading INPUT_RUNSETTINGSFILE
2019-11-25T10:19:24.2307377Z ##[debug]loading INPUT_RUNTESTSINISOLATION
2019-11-25T10:19:24.2308548Z ##[debug]loading INPUT_SEARCHFOLDER
2019-11-25T10:19:24.2309840Z ##[debug]loading INPUT_TCMTESTRUN
2019-11-25T10:19:24.2312325Z ##[debug]loading INPUT_TESTASSEMBLYVER2
2019-11-25T10:19:24.2314503Z ##[debug]loading INPUT_TESTSELECTOR
2019-11-25T10:19:24.2315976Z ##[debug]loading INPUT_UITESTS
2019-11-25T10:19:24.2317320Z ##[debug]loading INPUT_VSTESTLOCATIONMETHOD
2019-11-25T10:19:24.2320479Z ##[debug]loading INPUT_VSTESTVERSION
2019-11-25T10:19:24.2324884Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN
2019-11-25T10:19:24.2328985Z ##[debug]loaded 33
2019-11-25T10:19:24.2353327Z ##[debug]Agent.ProxyUrl=undefined
2019-11-25T10:19:24.2354575Z ##[debug]Agent.CAInfo=undefined
2019-11-25T10:19:24.2354968Z ##[debug]Agent.ClientCert=undefined
2019-11-25T10:19:24.2356873Z ##[debug]Agent.SkipCertValidation=undefined
2019-11-25T10:19:24.7239691Z ##[debug]System.DefaultWorkingDirectory=C:\agent\_work\1\s
2019-11-25T10:19:25.7891005Z ##[debug]check path : C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\task.json
2019-11-25T10:19:25.7892185Z ##[debug]adding resource file: C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\task.json
2019-11-25T10:19:25.7892840Z ##[debug]system.culture=en-US
2019-11-25T10:19:25.8087285Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:25.8087973Z ##[debug]Release.ReleaseUri=undefined
2019-11-25T10:19:25.8088472Z ##[debug]Release.ReleaseId=undefined
2019-11-25T10:19:25.8088647Z ##[debug]Build.BuildUri=vstfs:///Build/Build/47089
2019-11-25T10:19:25.8088760Z ##[debug]Build.Buildid=47089
2019-11-25T10:19:25.8089451Z ##[debug]telemetry area: TestExecution feature: TestExecutionTask data: {"builduri":"vstfs:///Build/Build/47089","buildid":"47089","state":"started"}
2019-11-25T10:19:25.8551507Z ##[debug]Processed: ##vso[telemetry.publish area=TestExecution;feature=TestExecutionTask;]{"builduri":"vstfs:///Build/Build/47089","buildid":"47089","state":"started"}
2019-11-25T10:19:25.8551958Z ##[debug]System.TeamFoundationCollectionUri=https://dev.azure.com/stub-account/
2019-11-25T10:19:25.8552024Z SystemVssConnection exists true
2019-11-25T10:19:25.8552087Z ##[debug]SystemVssConnection exists true
2019-11-25T10:19:26.0849129Z ##[debug] Final feature flag state: true
2019-11-25T10:19:26.0852900Z ##[debug]System.TeamFoundationCollectionUri=https://dev.azure.com/stub-account/
2019-11-25T10:19:26.0856659Z SystemVssConnection exists true
2019-11-25T10:19:26.0856932Z ##[debug]SystemVssConnection exists true
2019-11-25T10:19:26.5125547Z ##[debug] Final feature flag state: false
2019-11-25T10:19:26.5126686Z ##[debug]Changing active code page to UTF-8
2019-11-25T10:19:26.5130666Z ##[debug]which 'C:\Windows\system32\chcp.com'
2019-11-25T10:19:26.5140151Z ##[debug]found: 'C:\Windows\system32\chcp.com'
2019-11-25T10:19:26.5140317Z ##[debug]which 'C:\Windows\system32\chcp.com'
2019-11-25T10:19:26.5141762Z ##[debug]found: 'C:\Windows\system32\chcp.com'
2019-11-25T10:19:26.5144545Z ##[debug]C:\Windows\system32\chcp.com arg: ["65001"]
2019-11-25T10:19:26.5148486Z ##[debug]exec tool: C:\Windows\system32\chcp.com
2019-11-25T10:19:26.5148653Z ##[debug]arguments:
2019-11-25T10:19:26.5149150Z ##[debug]   65001
2019-11-25T10:19:26.5298742Z ##[debug]testSelector=testAssemblies
2019-11-25T10:19:26.5298950Z ##[debug]System.ParallelExecutionType=MultiConfiguration
2019-11-25T10:19:26.5301869Z ##[debug]distributionBatchType=basedOnTestCases
2019-11-25T10:19:26.5303159Z ##[debug]batchingBasedOnAgentsOption=autoBatchSize
2019-11-25T10:19:26.5304705Z ##[debug]testSelector=testAssemblies
2019-11-25T10:19:26.5305864Z ##[debug]Value of Test Selector :testAssemblies
2019-11-25T10:19:26.5306312Z ##[debug]System.ParallelExecutionType=MultiConfiguration
2019-11-25T10:19:26.5306463Z ##[debug]Value of ParallelExecutionType :MultiConfiguration
2019-11-25T10:19:26.5306573Z ##[debug]System.TeamFoundationCollectionUri=https://dev.azure.com/stub-account/
2019-11-25T10:19:26.5310006Z SystemVssConnection exists true
2019-11-25T10:19:26.5310484Z ##[debug]SystemVssConnection exists true
2019-11-25T10:19:26.7685494Z ##[debug] Final feature flag state: true
2019-11-25T10:19:26.7686578Z ##[debug]Diagnostics feature flag is set to: true
2019-11-25T10:19:26.7688098Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:26.7688299Z ##[debug]Release.ReleaseUri=undefined
2019-11-25T10:19:26.7688617Z ##[debug]Release.ReleaseId=undefined
2019-11-25T10:19:26.7688983Z ##[debug]Build.BuildUri=vstfs:///Build/Build/47089
2019-11-25T10:19:26.7689116Z ##[debug]Build.Buildid=47089
2019-11-25T10:19:26.7689333Z ##[debug]telemetry area: TestExecution feature: TestExecutionTask data: {"builduri":"vstfs:///Build/Build/47089","buildid":"47089","runmode":"nondistributed"}
2019-11-25T10:19:26.8098850Z ##[debug]Processed: ##vso[telemetry.publish area=TestExecution;feature=TestExecutionTask;]{"builduri":"vstfs:///Build/Build/47089","buildid":"47089","runmode":"nondistributed"}
2019-11-25T10:19:26.8099745Z Running tests using vstest.console.exe runner.
2019-11-25T10:19:26.8100033Z ======================================================
2019-11-25T10:19:26.8100526Z ##[debug]testSelector=testAssemblies
2019-11-25T10:19:26.8100575Z Test selector : Test assemblies
2019-11-25T10:19:26.8100650Z ##[debug]testFiltercriteria=null
2019-11-25T10:19:26.8100687Z Test filter criteria : null
2019-11-25T10:19:26.8100751Z ##[debug]searchFolder=C:\agent\_work\1\s
2019-11-25T10:19:26.8100806Z Search folder : C:\agent\_work\1\s
2019-11-25T10:19:26.8100870Z ##[debug]Release.DefinitionId=undefined
2019-11-25T10:19:26.8100935Z ##[debug]System.DefinitionId=385
2019-11-25T10:19:26.8100991Z ##[debug]Release.DefinitionId=undefined
2019-11-25T10:19:26.8101052Z ##[debug]Build.Buildid=47089
2019-11-25T10:19:26.8101108Z ##[debug]Build.Buildid=47089
2019-11-25T10:19:26.8101174Z ##[debug]Build.BuildUri=vstfs:///Build/Build/47089
2019-11-25T10:19:26.8101239Z ##[debug]Release.ReleaseId=undefined
2019-11-25T10:19:26.8101295Z ##[debug]Release.ReleaseUri=undefined
2019-11-25T10:19:26.8101358Z ##[debug]Release.EnvironmentUri=undefined
2019-11-25T10:19:26.8101414Z ##[debug]System.DefaultWorkingDirectory=C:\agent\_work\1\s
2019-11-25T10:19:26.8101584Z ##[debug]System.PhaseName=Build
2019-11-25T10:19:26.8101643Z ##[debug]System.PhaseAttempt=1
2019-11-25T10:19:26.8101708Z ##[debug]System.PhaseAttempt=1
2019-11-25T10:19:26.8101762Z ##[debug]System.StageName=__default
2019-11-25T10:19:26.8101831Z ##[debug]System.StageAttempt=1
2019-11-25T10:19:26.8101987Z ##[debug]System.StageAttempt=1
2019-11-25T10:19:26.8102051Z ##[debug]System.JobName=x64
2019-11-25T10:19:26.8102105Z ##[debug]System.JobAttempt=1
2019-11-25T10:19:26.8102159Z ##[debug]System.JobAttempt=1
2019-11-25T10:19:26.8102220Z ##[debug]configuration=null
2019-11-25T10:19:26.8102273Z ##[debug]platform=x64
2019-11-25T10:19:26.8102341Z ##[debug]testRunTitle=null
2019-11-25T10:19:26.8102396Z ##[debug]System.PullRequest.TargetBranch=undefined
2019-11-25T10:19:26.8102460Z ##[debug]BUILD_DEFINITIONNAME=PR
2019-11-25T10:19:26.8102516Z ##[debug]BUILD_BUILDNUMBER=20191125.5
2019-11-25T10:19:26.8102578Z ##[debug]vstestLocationMethod=version
2019-11-25T10:19:26.8102632Z ##[debug]vsTestVersion=16.0
2019-11-25T10:19:26.8102670Z VisualStudio version selected for test execution : 16.0
2019-11-25T10:19:26.8102734Z ##[debug]vsTestVersion=16.0
2019-11-25T10:19:26.8102792Z ##[debug]which 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe'
2019-11-25T10:19:26.8102868Z ##[debug]found: 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe'
2019-11-25T10:19:26.8102928Z ##[debug]which 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe'
2019-11-25T10:19:26.8102993Z ##[debug]found: 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe'
2019-11-25T10:19:26.8103040Z Attempting to find vstest.console from a visual studio installation with version [15.0,17.0).
2019-11-25T10:19:26.8103112Z ##[debug]C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe arg: -version [15.0,17.0) -latest -products * -requires Microsoft.VisualStudio.PackageGroup.TestTools.Core -property installationPath
2019-11-25T10:19:26.8103176Z ##[debug]exec tool: C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\vswhere.exe
2019-11-25T10:19:26.8103243Z ##[debug]arguments:
2019-11-25T10:19:26.8103430Z ##[debug]   -version
2019-11-25T10:19:26.8103494Z ##[debug]   [15.0,17.0)
2019-11-25T10:19:26.8103547Z ##[debug]   -latest
2019-11-25T10:19:26.8103609Z ##[debug]   -products
2019-11-25T10:19:26.8103663Z ##[debug]   *
2019-11-25T10:19:26.8103725Z ##[debug]   -requires
2019-11-25T10:19:26.8103782Z ##[debug]   Microsoft.VisualStudio.PackageGroup.TestTools.Core
2019-11-25T10:19:26.8103905Z ##[debug]   -property
2019-11-25T10:19:26.8103967Z ##[debug]   installationPath
2019-11-25T10:19:26.8550530Z ##[debug]Visual Studio 15.0 or higher installed path: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise
2019-11-25T10:19:26.8552245Z ##[debug]System.Debug=true
2019-11-25T10:19:26.8553174Z ##[debug]agent.proxyurl=undefined
2019-11-25T10:19:26.8553496Z ##[debug]agent.proxyusername=undefined
2019-11-25T10:19:26.8554106Z ##[debug]agent.proxypassword=undefined
2019-11-25T10:19:26.8557064Z ##[debug]agent.proxybypasslist=undefined
2019-11-25T10:19:26.8565247Z ##[debug]runSettingsFile=C:\agent\_work\1\s
2019-11-25T10:19:26.8567057Z ##[debug]Absolute path for pathSegments: C:\agent\_work\1\s = C:\agent\_work\1\s
2019-11-25T10:19:26.8567380Z ##[debug]build.sourcesDirectory=C:\agent\_work\1\s
2019-11-25T10:19:26.8567636Z ##[debug]Absolute path for pathSegments: C:\agent\_work\1\s = C:\agent\_work\1\s
2019-11-25T10:19:26.8567908Z ##[debug]runSettingsFilepath supplied :false
2019-11-25T10:19:26.8568832Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:26.8569032Z ##[debug]Agent.TempDirectory=C:\agent\_work\_temp
2019-11-25T10:19:26.8569202Z ##[debug]overrideTestrunParameters=null
2019-11-25T10:19:26.8569368Z ##[debug]OverrideTestrunParameters set to null
2019-11-25T10:19:26.8571538Z ##[debug]runInParallel=False
2019-11-25T10:19:26.8572079Z Run in parallel : false
2019-11-25T10:19:26.8573394Z ##[debug]runTestsInIsolation=False
2019-11-25T10:19:26.8573566Z Run in isolation : false
2019-11-25T10:19:26.8573780Z ##[debug]pathtoCustomTestAdapters=null
2019-11-25T10:19:26.8573919Z Path to custom adapters : null
2019-11-25T10:19:26.8575461Z ##[debug]vstest.ignoretestfailures=undefined
2019-11-25T10:19:26.8576149Z ##[debug]ProceedAfterAbortedTestCase=undefined
2019-11-25T10:19:26.8576354Z ##[debug]ProceedAfterAbortedTestCase is set to : false
2019-11-25T10:19:26.8577828Z ##[debug]uiTests=false
2019-11-25T10:19:26.8579126Z ##[debug]otherConsoleOptions=/Platform:x64
2019-11-25T10:19:26.8579259Z Other console options : /Platform:x64
2019-11-25T10:19:26.8580729Z ##[debug]codeCoverageEnabled=False
2019-11-25T10:19:26.8580883Z Code coverage enabled : false
2019-11-25T10:19:26.8583231Z ##[debug]diagnosticsEnabled=false
2019-11-25T10:19:26.8584630Z ##[debug]collectDumpOn=onAbortOnly
2019-11-25T10:19:26.8584764Z Diagnostics enabled : false
2019-11-25T10:19:26.8585183Z ##[debug]vstest.customConsoleWrapperAssemblyLocation=undefined
2019-11-25T10:19:26.8588202Z ##[debug]runOnlyImpactedTests=False
2019-11-25T10:19:26.8591097Z ##[debug]rerunFailedTests=False
2019-11-25T10:19:26.8591307Z ##[debug]System.TeamProject=PrivilegeGuard
2019-11-25T10:19:26.8591523Z ##[debug]System.TeamFoundationCollectionUri=https://dev.azure.com/stub-account/
2019-11-25T10:19:26.8593090Z SystemVssConnection exists true
2019-11-25T10:19:26.8593399Z ##[debug]SystemVssConnection exists true
2019-11-25T10:19:26.8593511Z ##[debug]Agent.MachineName=CLIENTBUILD03
2019-11-25T10:19:26.8593822Z ##[debug]Agent.Name=CLIENTBUILD03
2019-11-25T10:19:26.8594072Z ##[debug]Agent.Id=120
2019-11-25T10:19:26.8595950Z ##[debug]DTA_INSTANCE_ID=undefined
2019-11-25T10:19:26.8597389Z ##[debug]set DTA_INSTANCE_ID=1
2019-11-25T10:19:26.8598326Z ##[debug]Processed: ##vso[task.setvariable variable=DTA_INSTANCE_ID;issecret=false;]1
2019-11-25T10:19:26.8599767Z ##[debug]dontDistribute=False
2019-11-25T10:19:26.8602727Z ##[debug]Release.ReleaseId=undefined
2019-11-25T10:19:26.8603912Z ##[debug]System.JobPositionInPhase=1
2019-11-25T10:19:26.8604121Z ##[debug]System.ParallelExecutionType=MultiConfiguration
2019-11-25T10:19:26.8604240Z ##[debug]System.PhaseId=6884a131-87da-5381-61f3-d7acc3b91d76
2019-11-25T10:19:26.8604648Z ##[debug]Hydra.EnableApiFlow=undefined
2019-11-25T10:19:26.8604889Z ##[debug]Build.SourcesDirectory=C:\agent\_work\1\s
2019-11-25T10:19:26.8608784Z ##[debug]uiTests=false
2019-11-25T10:19:26.8629460Z ##[debug]testAssemblyVer2=x64\Releas*\*Tests.dll
!Unit Tests\**
2019-11-25T10:19:26.8634064Z Run the tests locally using vstest.console.exe
2019-11-25T10:19:26.8634288Z ========================================================
2019-11-25T10:19:26.8634972Z ##[debug]Searching for test assemblies in: C:\agent\_work\1\s
2019-11-25T10:19:26.8639980Z ##[debug]defaultRoot: 'C:\agent\_work\1\s'
2019-11-25T10:19:26.8640985Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2019-11-25T10:19:26.8641281Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2019-11-25T10:19:26.8641405Z ##[debug]findOptions.followSymbolicLinks: 'true'
2019-11-25T10:19:26.8642624Z ##[debug]matchOptions.debug: 'false'
2019-11-25T10:19:26.8642829Z ##[debug]matchOptions.nobrace: 'true'
2019-11-25T10:19:26.8643118Z ##[debug]matchOptions.noglobstar: 'false'
2019-11-25T10:19:26.8643221Z ##[debug]matchOptions.dot: 'true'
2019-11-25T10:19:26.8643278Z ##[debug]matchOptions.noext: 'false'
2019-11-25T10:19:26.8643346Z ##[debug]matchOptions.nocase: 'true'
2019-11-25T10:19:26.8643409Z ##[debug]matchOptions.nonull: 'false'
2019-11-25T10:19:26.8643615Z ##[debug]matchOptions.matchBase: 'false'
2019-11-25T10:19:26.8643820Z ##[debug]matchOptions.nocomment: 'false'
2019-11-25T10:19:26.8644006Z ##[debug]matchOptions.nonegate: 'false'
2019-11-25T10:19:26.8644099Z ##[debug]matchOptions.flipNegate: 'false'
2019-11-25T10:19:26.8644638Z ##[debug]pattern: 'x64\Releas*\*Tests.dll'
2019-11-25T10:19:26.8667583Z ##[debug]findPath: 'C:\agent\_work\1\s\x64'
2019-11-25T10:19:26.8667690Z ##[debug]statOnly: 'false'
2019-11-25T10:19:26.8670154Z ##[debug]findPath: 'C:\agent\_work\1\s\x64'
2019-11-25T10:19:26.8670338Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2019-11-25T10:19:26.8670445Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2019-11-25T10:19:26.8670555Z ##[debug]findOptions.followSymbolicLinks: 'true'
2019-11-25T10:19:26.8676043Z ##[debug]  C:\agent\_work\1\s\x64 (directory)
2019-11-25T10:19:26.8683534Z ##[debug]  C:\agent\_work\1\s\x64\ReleaseStatic (directory)
2019-11-25T10:19:26.8705705Z ##[debug]  C:\agent\_work\1\s\x64\ReleaseStatic\Tests.dll (file)
2019-11-25T10:19:26.9043222Z ##[debug]442 results
2019-11-25T10:19:26.9043357Z ##[debug]found 442 paths
2019-11-25T10:19:26.9043449Z ##[debug]applying include pattern
2019-11-25T10:19:26.9043626Z ##[debug]adjustedPattern: 'C:\agent\_work\1\s\x64\Releas*\*Tests.dll'
2019-11-25T10:19:26.9124681Z ##[debug]18 matches
2019-11-25T10:19:26.9125670Z ##[debug]pattern: '!Unit Tests\**'
2019-11-25T10:19:26.9125934Z ##[debug]trimmed leading '!'. pattern: 'Unit Tests\**'
2019-11-25T10:19:26.9126461Z ##[debug]after ensurePatternRooted, pattern: 'C:\agent\_work\1\s\Unit Tests\**'
2019-11-25T10:19:26.9126890Z ##[debug]applying exclude pattern
2019-11-25T10:19:26.9130067Z ##[debug]0 matches
2019-11-25T10:19:26.9131289Z ##[debug]18 final results
2019-11-25T10:19:26.9135250Z ##[debug]which 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe'
2019-11-25T10:19:26.9169147Z ##[debug]found: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe'
2019-11-25T10:19:26.9169491Z ##[debug]which 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe'
2019-11-25T10:19:26.9169755Z ##[debug]found: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe'
2019-11-25T10:19:26.9172844Z Source filter: x64\Releas*\*Tests.dll,!Unit Tests\**
2019-11-25T10:19:26.9173053Z ##[debug]defaultRoot: 'C:\agent\_work\1\s'
2019-11-25T10:19:26.9173287Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2019-11-25T10:19:26.9173390Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2019-11-25T10:19:26.9173470Z ##[debug]findOptions.followSymbolicLinks: 'true'
2019-11-25T10:19:26.9173541Z ##[debug]matchOptions.debug: 'false'
2019-11-25T10:19:26.9173599Z ##[debug]matchOptions.nobrace: 'true'
2019-11-25T10:19:26.9173671Z ##[debug]matchOptions.noglobstar: 'false'
2019-11-25T10:19:26.9173950Z ##[debug]matchOptions.dot: 'true'
2019-11-25T10:19:26.9174184Z ##[debug]matchOptions.noext: 'false'
2019-11-25T10:19:26.9174406Z ##[debug]matchOptions.nocase: 'true'
2019-11-25T10:19:26.9174584Z ##[debug]matchOptions.nonull: 'false'
2019-11-25T10:19:26.9174682Z ##[debug]matchOptions.matchBase: 'false'
2019-11-25T10:19:26.9174819Z ##[debug]matchOptions.nocomment: 'false'
2019-11-25T10:19:26.9174875Z ##[debug]matchOptions.nonegate: 'false'
2019-11-25T10:19:26.9174947Z ##[debug]matchOptions.flipNegate: 'false'
2019-11-25T10:19:26.9175003Z ##[debug]pattern: 'x64\Releas*\*Tests.dll'
2019-11-25T10:19:26.9176342Z ##[debug]findPath: 'C:\agent\_work\1\s\x64'
2019-11-25T10:19:26.9176621Z ##[debug]statOnly: 'false'
2019-11-25T10:19:26.9176734Z ##[debug]findPath: 'C:\agent\_work\1\s\x64'
2019-11-25T10:19:26.9176853Z ##[debug]findOptions.allowBrokenSymbolicLinks: 'false'
2019-11-25T10:19:26.9176913Z ##[debug]findOptions.followSpecifiedSymbolicLink: 'true'
2019-11-25T10:19:26.9177024Z ##[debug]findOptions.followSymbolicLinks: 'true'
2019-11-25T10:19:26.9178912Z ##[debug]  C:\agent\_work\1\s\x64 (directory)
2019-11-25T10:19:26.9182678Z ##[debug]  C:\agent\_work\1\s\x64\ReleaseStatic (directory)
2019-11-25T10:19:26.9195581Z ##[debug]  C:\agent\_work\1\s\x64\ReleaseStatic\Tests.dll (file)
2019-11-25T10:19:26.9524530Z ##[debug]442 results
2019-11-25T10:19:26.9524763Z ##[debug]found 442 paths
2019-11-25T10:19:26.9524824Z ##[debug]applying include pattern
2019-11-25T10:19:26.9524940Z ##[debug]adjustedPattern: 'C:\agent\_work\1\s\x64\Releas*\*Tests.dll'
2019-11-25T10:19:26.9550283Z ##[debug]18 matches
2019-11-25T10:19:26.9550575Z ##[debug]pattern: '!Unit Tests\**'
2019-11-25T10:19:26.9550908Z ##[debug]trimmed leading '!'. pattern: 'Unit Tests\**'
2019-11-25T10:19:26.9551175Z ##[debug]after ensurePatternRooted, pattern: 'C:\agent\_work\1\s\Unit Tests\**'
2019-11-25T10:19:26.9551388Z ##[debug]applying exclude pattern
2019-11-25T10:19:26.9553282Z ##[debug]0 matches
2019-11-25T10:19:26.9553797Z ##[debug]18 final results
2019-11-25T10:19:26.9554116Z ##[debug]tl match count :18
2019-11-25T10:19:26.9561438Z ##[debug]Files matching count :18
2019-11-25T10:19:26.9566715Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:26.9567032Z ##[debug]Agent.TempDirectory=C:\agent\_work\_temp
2019-11-25T10:19:26.9623632Z ##[debug]Test Sources file :C:\agent\_work\_temp\testSources_0f3a43b0-0f6d-11ea-ad96-a10b5a4f7bbe.src
2019-11-25T10:19:26.9628818Z ##[debug]which 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:26.9645737Z ##[debug]found: 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:26.9675656Z ##[debug]which 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:26.9676256Z ##[debug]found: 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:26.9676441Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:26.9676534Z ##[debug]Agent.TempDirectory=C:\agent\_work\_temp
2019-11-25T10:19:26.9676644Z ##[debug]Removing node TestCaseFilter as its value is null.
2019-11-25T10:19:26.9676705Z ##[debug]Removing node ReleaseDefinitionId as its value is null.
2019-11-25T10:19:26.9676794Z ##[debug]Removing node ReleaseId as its value is null.
2019-11-25T10:19:26.9676853Z ##[debug]Removing node ReleaseUri as its value is undefined.
2019-11-25T10:19:26.9676922Z ##[debug]Removing node ReleaseEnvironmentUri as its value is undefined.
2019-11-25T10:19:26.9676979Z ##[debug]Removing node BuildConfig as its value is null.
2019-11-25T10:19:26.9677077Z ##[debug]Removing node PullRequestTargetBranchName as its value is undefined.
2019-11-25T10:19:26.9677137Z ##[debug]Removing node TestSourceSettings as its value is [object Object].
2019-11-25T10:19:26.9677208Z ##[debug]Removing node ProxyUrl as its value is undefined.
2019-11-25T10:19:26.9677266Z ##[debug]Removing node ProxyUsername as its value is undefined.
2019-11-25T10:19:26.9677336Z ##[debug]Removing node ProxyPassword as its value is undefined.
2019-11-25T10:19:26.9677392Z ##[debug]Removing node ProxyBypassHosts as its value is undefined.
2019-11-25T10:19:26.9677461Z ##[debug]Removing node ProxySettings as its value is [object Object].
2019-11-25T10:19:26.9677525Z ##[debug]Removing node OverridenParameters as its value is null.
2019-11-25T10:19:26.9677588Z ##[debug]Removing node PathToCustomTestAdapters as its value is null.
2019-11-25T10:19:26.9677646Z ##[debug]Removing node PathToCustomVsTestConsoleWrapperAssembly as its value is undefined.
2019-11-25T10:19:26.9707830Z ##[debug]C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe arg: ["--inputFile","C:\\agent\\_work\\_temp\\input_0f3b7c30-0f6d-11ea-ad96-a10b5a4f7bbe.json"]
2019-11-25T10:19:26.9710474Z SystemVssConnection exists true
2019-11-25T10:19:26.9710771Z ##[debug]SystemVssConnection exists true
2019-11-25T10:19:26.9715506Z ##[debug]exec tool: C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe
2019-11-25T10:19:26.9715731Z ##[debug]arguments:
2019-11-25T10:19:26.9715936Z ##[debug]   --inputFile
2019-11-25T10:19:26.9716093Z ##[debug]   C:\agent\_work\_temp\input_0f3b7c30-0f6d-11ea-ad96-a10b5a4f7bbe.json
2019-11-25T10:19:26.9720963Z [command]C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe --inputFile C:\agent\_work\_temp\input_0f3b7c30-0f6d-11ea-ad96-a10b5a4f7bbe.json
2019-11-25T10:19:26.9796815Z ======================================================
2019-11-25T10:19:26.9797111Z ##[debug]Agent.Version=2.160.1
2019-11-25T10:19:26.9797223Z ##[debug]Release.ReleaseUri=undefined
2019-11-25T10:19:26.9797326Z ##[debug]Release.ReleaseId=undefined
2019-11-25T10:19:26.9797430Z ##[debug]Build.BuildUri=vstfs:///Build/Build/47089
2019-11-25T10:19:26.9797498Z ##[debug]Build.Buildid=47089
2019-11-25T10:19:26.9797812Z ##[debug]telemetry area: TestExecution feature: TestExecutionTask data: {"builduri":"vstfs:///Build/Build/47089","buildid":"47089","state":"completed"}
2019-11-25T10:19:27.0211732Z ##[debug]Processed: ##vso[telemetry.publish area=TestExecution;feature=TestExecutionTask;]{"builduri":"vstfs:///Build/Build/47089","buildid":"47089","state":"completed"}
2019-11-25T10:19:27.3912057Z ##########################################################################
2019-11-25T10:19:27.3914608Z DtaExecutionHost version 18.160.29519.3.
2019-11-25T10:19:27.8744089Z ##[debug]Set DTA.AgentName to CLIENTBUILD03-CLIENTBUILD03-120.
2019-11-25T10:19:27.8764065Z ##[debug]Found file version info for vstest.console.exe present in C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform to be 16.1.0
2019-11-25T10:19:27.8810638Z ##[debug]Forcing TPv2 as the vstest.console.exe pointed to is the TPv2 one.
2019-11-25T10:19:27.8818541Z ##[debug]Set DTA.ForcePlatformV2 to True.
2019-11-25T10:19:27.8818864Z ##[debug]Set DTA.TestPlatformVersion to 16.1.0.
2019-11-25T10:19:27.8818998Z ##[debug]Set TE.SourceFilter to ThisWontBeUsed.
2019-11-25T10:19:27.8819097Z ##[debug]Set DTA.TeamFoundationCollectionUri to https://dev.azure.com/stub-account/.
2019-11-25T10:19:27.8831726Z ##[debug]Set DTA.EnvironmentUri to vstest://env/PrivilegeGuard/_apis/build/385/47089/6884a131-87da-5381-61f3-d7acc3b91d76/1/1.
2019-11-25T10:19:27.8834671Z ##[debug]Set DTA.ProjectName to PrivilegeGuard.
2019-11-25T10:19:27.8834794Z ##[debug]Set TE.TestRunTitle to TestRun_ClientPR_20191125.5.
2019-11-25T10:19:27.8835030Z ##[debug]Set TE.TestSelection to testassemblies.
2019-11-25T10:19:27.8835140Z ##[debug]Set DTA.LocalTestDropPath to C:\agent\_work\1\s.
2019-11-25T10:19:27.8843314Z ##[debug]Values is null for TE.TCMTestRun.
2019-11-25T10:19:27.8843493Z ##[debug]Values is null for TE.TestPlan.
2019-11-25T10:19:27.8843586Z ##[debug]Values is null for TE.TestPlanConfigId.
2019-11-25T10:19:27.8843721Z ##[debug]Value is empty for key TE.TestSuites.
2019-11-25T10:19:27.8843806Z ##[debug]Value is empty for key TE.TestCaseFilter.
2019-11-25T10:19:27.8843921Z ##[debug]Set DTA.BuildId to 47089.
2019-11-25T10:19:27.8844025Z ##[debug]Set DTA.BuildUri to vstfs:///Build/Build/47089.
2019-11-25T10:19:27.8844120Z ##[debug]Set DTA.ReleaseId to 0.
2019-11-25T10:19:27.8844178Z ##[debug]Value is empty for key DTA.ReleaseUri.
2019-11-25T10:19:27.8844249Z ##[debug]Value is empty for key TE.BuildConfig.
2019-11-25T10:19:27.8845155Z ##[debug]Set TE.BuildPlatform to x64.
2019-11-25T10:19:27.8845285Z ##[debug]Values is null for TE.RerunFailedTests.
2019-11-25T10:19:27.8845382Z ##[debug]Values is null for DTA.RerunFailedTestCasesMaxLimit.
2019-11-25T10:19:27.8853538Z ##[debug]Values is null for DTA.RerunFailedThreshold.
2019-11-25T10:19:27.8853750Z ##[debug]Values is null for TE.RerunMaxAttempts.
2019-11-25T10:19:27.8853871Z ##[debug]Values is null for TE.MaxAgentPhaseSlicing.
2019-11-25T10:19:27.8853966Z ##[debug]Values is null for TE.SliceTime.
2019-11-25T10:19:27.8854078Z ##[debug]Values is null for TE.NumberOfTestCasesPerSlice.
2019-11-25T10:19:27.8854191Z ##[debug]Set DTA.TestResultDirectory to C:\agent\_work\_temp\TestResults.
2019-11-25T10:19:27.8854298Z ##[debug]Value is empty for key DTA.CustomTestAdapters.
2019-11-25T10:19:27.8854427Z ##[debug]Set TE.IgnoreTestFailures to False.
2019-11-25T10:19:27.8854552Z ##[debug]Set DTA.ProceedAfterAbortedTestCase to False.
2019-11-25T10:19:27.8854639Z ##[debug]Value is empty for key TE.RunSettings.
2019-11-25T10:19:27.8854745Z ##[debug]Values is null for DTA.TIAEnabled.
2019-11-25T10:19:27.8854832Z ##[debug]Set DTA.TiaContext to CI.
2019-11-25T10:19:27.8854950Z ##[debug]Set DTA.EnableDiagLogs to True.
2019-11-25T10:19:27.8855050Z ##[debug]Set DTA.EnableConsoleLogs to True.
2019-11-25T10:19:27.8855182Z ##[debug]Set DTA.PublishTestResultsInTiaMode to False.
2019-11-25T10:19:27.8855243Z ##[debug]Set DTA.Owner to vstest.
2019-11-25T10:19:27.8855318Z ##[debug]Set DTA.TestSelector to C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe\..\..\TestSelector\TestSelector.exe.
2019-11-25T10:19:27.8855380Z ##[debug]Value is empty for key DTA.ReleaseEnvironmentUri.
2019-11-25T10:19:27.8855452Z ##[debug]Set TE.TestDropLocation to C:\agent\_work\1\s.
2019-11-25T10:19:27.8855739Z ##[debug]Set DTA.Runname to TestRun_ClientPR_20191125.5.
2019-11-25T10:19:27.8856226Z ##[debug]Set DTA.MiniMatchTestSourcesFile to C:\agent\_work\_temp\testSources_0f3a43b0-0f6d-11ea-ad96-a10b5a4f7bbe.src.
2019-11-25T10:19:27.8856428Z ##[debug]Values is null for TE.RerunFailedTestCasesMaxLimit.
2019-11-25T10:19:27.8856574Z ##[debug]Values is null for TE.RerunFailedThreshold.
2019-11-25T10:19:27.8857488Z ##[debug]Set DTA.VstestConsole to C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform.
2019-11-25T10:19:27.8858252Z ##[debug]Set DTA.TestWindow.Path to C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform.
2019-11-25T10:19:27.8863939Z ##[debug]Going via local test run host as DistributionSettings node is not present.
2019-11-25T10:19:27.9740453Z Starting TestExecution Model...
2019-11-25T10:19:30.4804885Z ##[debug]Object of TrxResultParser created.
2019-11-25T10:19:30.9383359Z ##[debug]Object of TestLogStore created.
2019-11-25T10:19:31.1984318Z ##[debug]Object of TestResultsPublisher created.
2019-11-25T10:19:31.3299051Z ##[debug]Object of TestLogStore created.
2019-11-25T10:19:31.3299771Z ##[debug]Object of TestResultsPublisher created.
2019-11-25T10:19:31.3299894Z ##[debug]Object of TestLogStore created.
2019-11-25T10:19:31.3300012Z ##[debug]Object of TestRunPublisher created.
2019-11-25T10:19:31.3318286Z ##[debug]Object of CodeCoverageInvoker created.
2019-11-25T10:19:31.3339562Z ##[debug]Starting the ExecutionStateModel
2019-11-25T10:19:31.4517251Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.SetupPhase
2019-11-25T10:19:31.4529200Z ##[debug]SetupPhase.Run: Running necessary setup steps.
2019-11-25T10:19:31.4650705Z ##[debug]Creating a dummy run settings file.
2019-11-25T10:19:31.4756812Z ##[debug]Code coverage node not present.
2019-11-25T10:19:31.4757023Z ##[debug]Updating the BatchSize in RunSettings to 1000
2019-11-25T10:19:31.4765506Z ##[debug]Run configuration not found in the runsettings, so adding one with BatchSize
2019-11-25T10:19:31.4814643Z ##[debug]Updating ResultDirectory by editing given runsettings if needed.
2019-11-25T10:19:31.4836112Z ##[debug]UpdateIfRequiredAndParse called for TestResultsDirectoryRunsettingsParser.
2019-11-25T10:19:31.4837791Z ##[debug]ResultsDirectory node not found in run configuration. So adding ResultsDirectory node.
2019-11-25T10:19:31.4837978Z ##[debug]CommonSettingsManager : TestResultsDirectory intialized to C:\agent\_work\_temp\TestResults
2019-11-25T10:19:31.4838043Z Updated Run Settings:
2019-11-25T10:19:31.4848409Z <RunSettings>
2019-11-25T10:19:31.4848784Z   <RunConfiguration>
2019-11-25T10:19:31.4848979Z     <BatchSize>1000</BatchSize>
2019-11-25T10:19:31.4849048Z     <ResultsDirectory>C:\agent\_work\_temp\TestResults</ResultsDirectory>
2019-11-25T10:19:31.4849104Z   </RunConfiguration>
2019-11-25T10:19:31.4849177Z </RunSettings>
2019-11-25T10:19:31.4940451Z ##[debug]PERF: SettingsUpdationPhase.UpdateSettingsAsRequired: took 41.0635 ms
2019-11-25T10:19:31.4942415Z ##[debug]SetupPhase.Run : Update settings completed.
2019-11-25T10:19:31.4986319Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.SetupPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.SetupPhaseResults
2019-11-25T10:19:31.4987147Z ##[debug]PERF: Running the phase MS.VS.TestService.VstestConsoleAdapter.SetupPhase: took 47.0494 ms
2019-11-25T10:19:31.4987330Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.ExecuteVsTestPhase
2019-11-25T10:19:31.5000857Z **************** Starting test execution *********************
2019-11-25T10:19:31.5373698Z ##[debug]Generating list of args to pass to vstest.console.exe.
2019-11-25T10:19:31.5459162Z [command]C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe "@C:\agent\_work\_temp\rp3rdqdphco.tmp"
2019-11-25T10:19:31.7301500Z Microsoft (R) Test Execution Command Line Tool Version 16.1.0
2019-11-25T10:19:31.7301937Z Copyright (c) Microsoft Corporation.  All rights reserved.
2019-11-25T10:19:31.7395701Z vstest.console.exe
2019-11-25T10:19:31.7395801Z "C:\agent\_work\1\s\x64\ReleaseStatic\Tests.dll"
2019-11-25T10:19:31.7398313Z /Settings:"C:\agent\_work\_temp\z23cmcgjhub.tmp.runsettings"
2019-11-25T10:19:31.7398370Z /Logger:"trx"
2019-11-25T10:19:31.7398426Z /TestAdapterPath:"C:\agent\_work\1\s"
2019-11-25T10:19:31.7398481Z /Diag:"C:\agent\_work\_temp\Attempt--1_ufzb5s.diag"
2019-11-25T10:19:31.7398558Z /Platform:x64
2019-11-25T10:19:32.2371280Z Starting test execution, please wait...
2019-11-25T10:19:32.2385032Z Logging Vstest Diagnostics in file: C:\agent\_work\_temp\Attempt--1_ufzb5s.diag
2019-11-25T10:19:34.3285020Z Logging TestHost Diagnostics in file: C:\agent\_work\_temp\Attempt--1_ufzb5s.host.19-11-25_10-19-33_87558_1.diag
2019-11-25T10:19:36.8915425Z   √ TEST_TESTNAME [< 1ms]
2019-11-25T10:19:37.3396460Z Results File: C:\agent\_work\_temp\TestResults\account_CLIENTBUILD03_2019-11-25_10_19_36.trx
2019-11-25T10:19:37.3425288Z Test Run Successful.
2019-11-25T10:19:37.3425576Z Total tests: 1081
2019-11-25T10:19:37.3425630Z      Passed: 1081
2019-11-25T10:19:37.3434276Z  Total time: 3.2002 Seconds
2019-11-25T10:19:37.4152653Z ##[debug]Exited vstest.console.exe with code 0.
2019-11-25T10:19:37.4152892Z ##[debug]PERF: ExecuteVsTestPhase.InvokeVSTest: took 5914.886 ms
2019-11-25T10:19:37.4152968Z Vstest.console.exe exited with code 0.
2019-11-25T10:19:37.4153063Z **************** Completed test execution *********************
2019-11-25T10:19:37.4153190Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.ExecuteVsTestPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.ExecutionVsTestPhaseResults
2019-11-25T10:19:37.4153316Z ##[debug]PERF WARNING: Running the phase MS.VS.TestService.VstestConsoleAdapter.ExecuteVsTestPhase: took 5916.363 ms
2019-11-25T10:19:37.4153394Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.PublishTestResultPhase
2019-11-25T10:19:37.4174877Z ##[debug]Starting Publish Test Results: TIA: False
2019-11-25T10:19:37.4199495Z ##[debug]Starting PublishTestResult from Result Files
2019-11-25T10:19:37.4226576Z Test results files: C:\agent\_work\_temp\TestResults\account_CLIENTBUILD03_2019-11-25_10_19_36.trx
2019-11-25T10:19:37.4308698Z ##[debug]Entering ParseTestResultFiles
2019-11-25T10:19:37.4313169Z ##[debug]runContext.Configuration is null
2019-11-25T10:19:37.4313323Z ##[debug]runContext.ReleaseURI is null
2019-11-25T10:19:37.4313751Z ##[debug]runContext.ReleaseEnvironmentUri is null
2019-11-25T10:19:37.4347854Z ##[debug]Reading test results from file 'C:\agent\_work\_temp\TestResults\account_CLIENTBUILD03_2019-11-25_10_19_36.trx'.
2019-11-25T10:19:37.4684457Z ##[debug]Setting run start and finish times.
2019-11-25T10:19:37.4739448Z ##[debug]Attachment location: C:\agent\_work\_temp\TestResults\account_CLIENTBUILD03_2019-11-25_10_19_36\In.
2019-11-25T10:19:37.5073129Z ##[debug]Total test results: 1081.
2019-11-25T10:19:37.5078005Z ##[debug]Leaving ParseTestResultFiles
2019-11-25T10:19:37.5129511Z ##[debug]Entering CreateTestRunAsync
2019-11-25T10:19:37.5130054Z ##[debug]Leaving CreateTestRunAsync
2019-11-25T10:19:37.8852383Z Created test run: 1115348
2019-11-25T10:19:37.8852870Z ##[debug]Processed: ##vso[task.setvariable variable=vstest.testrunid]1115348
2019-11-25T10:19:37.8852915Z Publishing test results: 1081
2019-11-25T10:19:37.8890976Z ##[debug]Entering AddTestResultsAsync
2019-11-25T10:19:38.0496675Z Publishing test results to test run '1115348'.
2019-11-25T10:19:38.0523881Z TestResults To Publish 1081, Test run id:1115348
2019-11-25T10:19:38.0606063Z Test results publishing 1000, remaining: 81. Test run id: 1115348
2019-11-25T10:19:38.5274947Z Test results publishing 81, remaining: 0. Test run id: 1115348
2019-11-25T10:19:38.6279587Z ##[debug]Leaving AddTestResultsAsync
2019-11-25T10:19:38.6279842Z Published test results: 1081
2019-11-25T10:19:38.6285914Z Publishing Attachments: 1
2019-11-25T10:19:38.6335619Z ##[debug]Entering CreateTestRunAttachmentsAsync
2019-11-25T10:19:38.6974785Z ##[debug]Leaving CreateTestRunAttachmentsAsync
2019-11-25T10:19:38.6989145Z ##[debug]Uploading test run attachements individually
2019-11-25T10:19:38.7122579Z ##[debug]Entering UploadTestRunLogAsync
2019-11-25T10:19:38.9387580Z ##[debug]Blob name: GeneralAttachment/account_CLIENTBUILD03_2019-11-25_10_19_36.trx .
2019-11-25T10:19:39.8293791Z ##[debug]File uploaded successsfully on LogStore account_CLIENTBUILD03_2019-11-25_10_19_36.trx
2019-11-25T10:19:39.8296730Z ##[debug]Completed PublishTestResult
2019-11-25T10:19:39.8296955Z ##[debug]PERF: PublishTestResultPhase.Publish: took 2412.0681 ms
2019-11-25T10:19:39.8297023Z ##[debug]Completed Publish Test Results.
2019-11-25T10:19:39.8297101Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.PublishTestResultPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.PublishTestResultPhaseResults
2019-11-25T10:19:39.8297189Z ##[debug]PERF WARNING: Running the phase MS.VS.TestService.VstestConsoleAdapter.PublishTestResultPhase: took 2414.3244 ms
2019-11-25T10:19:39.8297267Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.RerunValidationPhase
2019-11-25T10:19:39.8325363Z ##[debug]Started RerunValidationPhase for 1115348
2019-11-25T10:19:39.8325553Z ##[debug]Rerunning of failed tests is not enabled
2019-11-25T10:19:39.8325670Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.RerunValidationPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.RerunValidationPhaseResults
2019-11-25T10:19:39.8325783Z ##[debug]PERF: Running the phase MS.VS.TestService.VstestConsoleAdapter.RerunValidationPhase: took 2.8597 ms
2019-11-25T10:19:39.8325862Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.QueueCodeCoverageMergePhase
2019-11-25T10:19:39.8337333Z ##[debug]Started QueueuCodeCoverageMergePhase 47089
2019-11-25T10:19:39.8337484Z ##[debug]Not invoking Merge CodeCoverage, not a valid merge scenario
2019-11-25T10:19:39.8337596Z ##[debug]Completed QueueuCodeCoverageMergePhase 47089
2019-11-25T10:19:39.8337708Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.QueueCodeCoverageMergePhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.QueueCodeCoverageMergePhaseResults
2019-11-25T10:19:39.8337826Z ##[debug]PERF: Running the phase MS.VS.TestService.VstestConsoleAdapter.QueueCodeCoverageMergePhase: took 1.256 ms
2019-11-25T10:19:39.8337910Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.TestRunCompletionPhase
2019-11-25T10:19:39.8362318Z ##[debug]Started TestRunCompletionPhase 1115348
2019-11-25T10:19:39.8362539Z ##[debug]Test run needs to be marked as complete.
2019-11-25T10:19:39.8404950Z ##[debug]Entering UpdateTestRunAsync
2019-11-25T10:19:39.8405131Z ##[debug]Leaving UpdateTestRunAsync
2019-11-25T10:19:39.9340274Z ##[debug]PERF: TestRunCompletionPhase:CompleteTestRun: took 97.7175 ms
2019-11-25T10:19:39.9995395Z ##[debug]Completed TestRunCompletionPhase 1115348
2019-11-25T10:19:39.9995667Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.TestRunCompletionPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.TestRunCompletionPhaseResults
2019-11-25T10:19:39.9995741Z ##[debug]PERF: Running the phase MS.VS.TestService.VstestConsoleAdapter.TestRunCompletionPhase: took 165.7155 ms
2019-11-25T10:19:39.9995825Z ##[debug]Current phase: MS.VS.TestService.VstestConsoleAdapter.CleanupPhase
2019-11-25T10:19:40.0005201Z ##[debug]Started CleanupPhase 1115348
2019-11-25T10:19:40.0013582Z ##[debug]Looking for diag files with pattern Attempt*ufzb5s*.diag
2019-11-25T10:19:40.0021409Z ##[debug]Processed: ##vso[task.uploadfile]C:\agent\_work\_temp\Attempt--1_ufzb5s.diag
2019-11-25T10:19:40.0021962Z ##[debug]Processed: ##vso[task.uploadfile]C:\agent\_work\_temp\Attempt--1_ufzb5s.host.19-11-25_10-19-33_87558_1.diag
2019-11-25T10:19:40.0601746Z ##[debug]Completed CleanupPhase 1115348
2019-11-25T10:19:40.0601973Z ##[debug]Current Phase: MS.VS.TestService.VstestConsoleAdapter.CleanupPhase Phase Result: MS.VS.TestService.VstestConsoleAdapter.CleanupPhaseResults
2019-11-25T10:19:40.0602070Z ##[debug]PERF: Running the phase MS.VS.TestService.VstestConsoleAdapter.CleanupPhase: took 60.5703 ms
2019-11-25T10:19:40.0602145Z ##[debug]Completed the ExecutionStateModel
2019-11-25T10:19:40.0602188Z Completed TestExecution Model...
2019-11-25T10:19:40.0780290Z ##[debug]Exit code 0 received from tool 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:40.0787021Z ##[debug]STDIO streams have closed for tool 'C:\agent\_work\_tasks\VSTest_ef087383-ee5e-42c7-9a53-ab56c98420f9\2.160.4\Modules\DTAExecutionHost.exe'
2019-11-25T10:19:40.0797489Z ##[debug]DtaExecutionHost finished
2019-11-25T10:19:40.0797630Z ##[debug]Modules/DTAExecutionHost.exe exited with code 0
2019-11-25T10:19:40.0799479Z ##[debug]task result: Succeeded
2019-11-25T10:19:40.0805079Z ##[debug]Processed: ##vso[task.complete result=Succeeded;done=true;]Task succeeded
2019-11-25T10:19:40.0898946Z ##[section]Finishing: Run Tests
Lawls91 commented 4 years ago

Nevermind, figured this out. Previously I had codecoverage enabled, which was the part that caused the issue. When I checked in a runsettingsfile, I disabled codecoverage in the task which no longer generates that block.

Closing as fixed