Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2017-04-18 01:37:12 +0300
committerDan Moseley <danmose@microsoft.com>2017-04-18 01:37:12 +0300
commitfa8fdd2b897c5dc001e839d084419718e313a93a (patch)
treeee613e87676df393210402b6fa863cc1457b4588 /Tools-Override
parentdb181f448f3c6bc252ae267025adf7f77f36869c (diff)
Don't run perf tests in parallel in outerloop runs. (#18503)
Diffstat (limited to 'Tools-Override')
-rw-r--r--Tools-Override/tests.targets2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools-Override/tests.targets b/Tools-Override/tests.targets
index d61bf1177b..e491162807 100644
--- a/Tools-Override/tests.targets
+++ b/Tools-Override/tests.targets
@@ -52,6 +52,8 @@
<XunitOptions>$(XunitOptions) -xml $(XunitResultsFileName)</XunitOptions>
<XunitOptions Condition="'$(Performance)'!='true' and '$(Outerloop)' != 'true'">$(XunitOptions) -notrait Benchmark=true</XunitOptions>
+ <!-- Don't run performance tests in parallel, even in "functional" outerloop runs. -->
+ <XunitOptions Condition="'$(Performance)'!='true' and '$(Outerloop)' == 'true' and '$(IncludePerformanceTests)' == 'true'">$(XunitOptions) -parallel none</XunitOptions>
<XunitOptions Condition="'$(BuildingUAPAOTVertical)'=='true'">$(XunitOptions) -redirectoutput</XunitOptions>
<XunitOptions>$(XunitOptions) -notrait category=non$(_bc_TargetGroup)tests</XunitOptions>