summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-02-21 14:38:42 -0800
committerGitHub <noreply@github.com>2019-02-21 14:38:42 -0800
commit3e140890fd7ba79bd96ee42735c946b14d65d55b (patch)
treec516734cdb20fbcfbb6be137cb3ea2c97b6bab4b
parent2dfd1779ae9eebe89b223cff6fd77825301971dd (diff)
downloadcoreclr-3e140890fd7ba79bd96ee42735c946b14d65d55b.tar.gz
coreclr-3e140890fd7ba79bd96ee42735c946b14d65d55b.tar.bz2
coreclr-3e140890fd7ba79bd96ee42735c946b14d65d55b.zip
[XUnit] Use ParallelRun==Collections on all platforms. (#22746)
* Use ParallelRun==Collections on all platforms. * Fix formatting
-rw-r--r--tests/tests.targets7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/tests.targets b/tests/tests.targets
index 273b6aa74f..e8d0192f35 100644
--- a/tests/tests.targets
+++ b/tests/tests.targets
@@ -31,11 +31,8 @@
<PropertyGroup>
<ExcludeTraits Condition="'$(ExcludeTraits)'==''">category=outerloop;category=failing</ExcludeTraits>
- <!-- Run one assembly at a time on Linux/arm to avoid OutOfMemory (see https://github.com/dotnet/coreclr/issues/20328) -->
- <ParallelRun Condition="'$(ParallelRun)'=='' and '$(__BuildOS)'=='Linux' and '$(__BuildArch)'=='arm'">collections</ParallelRun>
- <!-- Run one assembly at a time on arm64 to avoid excessive parallelism leading to test timeouts (see https://github.com/dotnet/coreclr/issues/22419) -->
- <ParallelRun Condition="'$(ParallelRun)'=='' and '$(__BuildArch)'=='arm64'">collections</ParallelRun>
- <ParallelRun Condition="'$(ParallelRun)'==''">all</ParallelRun>
+ <!-- Run one assembly at a time to avoid excessive parallelism leading to test timeouts -->
+ <ParallelRun Condition="'$(ParallelRun)'==''">collections</ParallelRun>
</PropertyGroup>
<ItemGroup>
<IncludeTraitsItems Include="$(IncludeTraits)" />