diff options
author | Egor Chesakov <Egor.Chesakov@microsoft.com> | 2019-04-12 16:33:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 16:33:54 -0700 |
commit | e347c0e4939d06b15e31e079a790fcba0e071abc (patch) | |
tree | 151e4eb383d67ff82442cba84b67ead9de158a87 | |
parent | 2573e4e5c12c4fd165db53cc31b0fc14c118d47b (diff) | |
download | coreclr-e347c0e4939d06b15e31e079a790fcba0e071abc.tar.gz coreclr-e347c0e4939d06b15e31e079a790fcba0e071abc.tar.bz2 coreclr-e347c0e4939d06b15e31e079a790fcba0e071abc.zip |
Add R2R prefix to TestRunNamePrefix when running ReadyToRun jobs (#23945)
-rw-r--r-- | tests/helixpublishwitharcade.proj | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/helixpublishwitharcade.proj b/tests/helixpublishwitharcade.proj index b421d56bbb..1016f94b1d 100644 --- a/tests/helixpublishwitharcade.proj +++ b/tests/helixpublishwitharcade.proj @@ -164,8 +164,9 @@ <HelixConfiguration Condition=" '$(Scenario)' == 'normal' ">$(BuildType)</HelixConfiguration> <HelixConfiguration Condition=" '$(Scenario)' != 'normal' ">$(BuildType)-$(Scenario)</HelixConfiguration> <RunCrossGen Condition=" '$(RunCrossGen)' != 'true' ">false</RunCrossGen> - <TestRunNamePrefix Condition=" '$(Scenario)' == 'normal' ">$(BuildOS) $(BuildArch) $(BuildType) @ </TestRunNamePrefix> - <TestRunNamePrefix Condition=" '$(Scenario)' != 'normal' ">$(BuildOS) $(BuildArch) $(BuildType) $(Scenario) @ </TestRunNamePrefix> + <TestRunNamePrefix Condition=" '$(RunCrossGen)' == 'true' ">R2R </TestRunNamePrefix> + <TestRunNamePrefix Condition=" '$(Scenario)' == 'normal' ">$(TestRunNamePrefix)$(BuildOS) $(BuildArch) $(BuildType) @ </TestRunNamePrefix> + <TestRunNamePrefix Condition=" '$(Scenario)' != 'normal' ">$(TestRunNamePrefix)$(BuildOS) $(BuildArch) $(BuildType) $(Scenario) @ </TestRunNamePrefix> <TimeoutPerTestInMilliseconds Condition=" '$(TimeoutPerTestInMinutes)' != '' ">$([System.TimeSpan]::FromMinutes($(TimeoutPerTestInMinutes)).TotalMilliseconds)</TimeoutPerTestInMilliseconds> <WaitForWorkItemCompletion>true</WaitForWorkItemCompletion> <XUnitRunnerArgs>-parallel collections -nocolor -noshadow -xml testResults.xml</XUnitRunnerArgs> |