Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libraries/System.Linq.Parallel/tests/ExchangeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public static void Merge_ArgumentNullException()
// enumerator when it is finished. If an exception occurs, the calling enumerator disposes
// the source enumerator... but then other worker threads may generate ODEs.
// This test verifies any such ODEs are not reflected in the output exception.
[Theory]
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
[MemberData(nameof(UnorderedSources.BinaryRanges), new[] { 16 }, new[] { 16 }, MemberType = typeof(UnorderedSources))]
public static void PlinqChunkPartitioner_DontEnumerateAfterException(
Labeled<ParallelQuery<int>> left, int leftCount,
Expand All @@ -231,7 +231,7 @@ public static void PlinqChunkPartitioner_DontEnumerateAfterException(
// disposes the enumerator when it is finished. If an exception occurs, the calling
// enumerator disposes the source enumerator... but then other worker threads may generate ODEs.
// This test verifies any such ODEs are not reflected in the output exception.
[Theory]
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
[MemberData(nameof(UnorderedSources.BinaryRanges), new[] { 16 }, new[] { 16 }, MemberType = typeof(UnorderedSources))]
public static void ManualChunkPartitioner_DontEnumerateAfterException(
Labeled<ParallelQuery<int>> left, int leftCount,
Expand Down