Skip to content

Commit 92b5b75

Browse files
committed
Standardize OCE and AggregateException handling
1 parent ba0711d commit 92b5b75

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/Adapter/MSTest.TestAdapter/Helpers/FixtureMethodRunner.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ internal static class FixtureMethodRunner
8282
action();
8383
return null;
8484
}
85-
catch (OperationCanceledException)
85+
catch (Exception ex) when
86+
((ex is OperationCanceledException oce && oce.CancellationToken == cancellationTokenSource.Token)
87+
|| (ex is AggregateException aggregateEx && aggregateEx.InnerExceptions.OfType<TaskCanceledException>().Any()))
8688
{
8789
// Ideally we would like to check that the token of the exception matches cancellationTokenSource but TestContext
8890
// instances are not well defined so we have to handle the exception entirely.
@@ -156,7 +158,7 @@ internal static class FixtureMethodRunner
156158
timeout));
157159
}
158160
catch (Exception ex) when
159-
(ex is OperationCanceledException
161+
((ex is OperationCanceledException oce && oce.CancellationToken == cancellationTokenSource.Token)
160162
|| (ex is AggregateException aggregateEx && aggregateEx.InnerExceptions.OfType<TaskCanceledException>().Any()))
161163
{
162164
return new(
@@ -220,10 +222,7 @@ internal static class FixtureMethodRunner
220222
timeout));
221223
}
222224
catch (Exception ex) when
223-
224-
// This exception occurs when the cancellation happens before the task is actually started.
225-
((ex is TaskCanceledException tce && tce.CancellationToken == cancellationTokenSource.Token)
226-
|| (ex is OperationCanceledException oce && oce.CancellationToken == cancellationTokenSource.Token)
225+
((ex is OperationCanceledException oce && oce.CancellationToken == cancellationTokenSource.Token)
227226
|| (ex is AggregateException aggregateEx && aggregateEx.InnerExceptions.OfType<TaskCanceledException>().Any()))
228227
{
229228
return new(

0 commit comments

Comments
 (0)