File tree 1 file changed +5
-6
lines changed
src/Adapter/MSTest.TestAdapter/Helpers
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,9 @@ internal static class FixtureMethodRunner
82
82
action ( ) ;
83
83
return null ;
84
84
}
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 ( ) ) )
86
88
{
87
89
// Ideally we would like to check that the token of the exception matches cancellationTokenSource but TestContext
88
90
// instances are not well defined so we have to handle the exception entirely.
@@ -156,7 +158,7 @@ internal static class FixtureMethodRunner
156
158
timeout ) ) ;
157
159
}
158
160
catch ( Exception ex ) when
159
- ( ex is OperationCanceledException
161
+ ( ( ex is OperationCanceledException oce && oce . CancellationToken == cancellationTokenSource . Token )
160
162
|| ( ex is AggregateException aggregateEx && aggregateEx . InnerExceptions . OfType < TaskCanceledException > ( ) . Any ( ) ) )
161
163
{
162
164
return new (
@@ -220,10 +222,7 @@ internal static class FixtureMethodRunner
220
222
timeout ) ) ;
221
223
}
222
224
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 )
227
226
|| ( ex is AggregateException aggregateEx && aggregateEx . InnerExceptions . OfType < TaskCanceledException > ( ) . Any ( ) ) )
228
227
{
229
228
return new (
You can’t perform that action at this time.
0 commit comments