[XUnit] Use ParallelRun==Collections on all platforms. (#22746)
authorSergey Andreenko <seandree@microsoft.com>
Thu, 21 Feb 2019 22:38:42 +0000 (14:38 -0800)
committerGitHub <noreply@github.com>
Thu, 21 Feb 2019 22:38:42 +0000 (14:38 -0800)
* Use ParallelRun==Collections on all platforms.

* Fix formatting

tests/tests.targets

index 273b6aa..e8d0192 100644 (file)
 
     <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)" />