@@ -120,7 +120,7 @@ public async Task ExecuteUnderLockAsyncOfT_WithNoContention_ExecutesAction()
120120 Assert . Equal ( 1 , callCount ) ;
121121 }
122122
123- [ Fact ]
123+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
124124 public async Task ExecuteUnderLockAsync_AvoidsOverlappingActions ( )
125125 {
126126 var firstEntered = new AsyncManualResetEvent ( ) ;
@@ -144,7 +144,7 @@ Task secondAction() => Task.Run(() => instance.ExecuteUnderLockAsync((ct) =>
144144 await AssertNoOverlap ( firstAction , secondAction , firstEntered , firstRelease , secondEntered ) ;
145145 }
146146
147- [ Fact ]
147+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
148148 public async Task ExecuteUnderLockAsyncOfT_AvoidsOverlappingActions ( )
149149 {
150150 var firstEntered = new AsyncManualResetEvent ( ) ;
@@ -170,7 +170,7 @@ Task secondAction() => Task.Run(() => instance.ExecuteUnderLockAsync((ct) =>
170170 await AssertNoOverlap ( firstAction , secondAction , firstEntered , firstRelease , secondEntered ) ;
171171 }
172172
173- [ Fact ]
173+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
174174 public async Task ExecuteUnderLockAsyncOfT_AvoidsOverlappingActionsWithExecuteUnderLockAsync ( )
175175 {
176176 var firstEntered = new AsyncManualResetEvent ( ) ;
@@ -194,7 +194,7 @@ Task secondAction() => Task.Run(() => instance.ExecuteUnderLockAsync((ct) =>
194194 await AssertNoOverlap ( firstAction , secondAction , firstEntered , firstRelease , secondEntered ) ;
195195 }
196196
197- [ Fact ]
197+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
198198 public async Task ExecuteUnderLockAsync_AvoidsOverlappingActionsWithExecuteUnderLockAsyncOfT ( )
199199 {
200200 var firstEntered = new AsyncManualResetEvent ( ) ;
@@ -266,7 +266,7 @@ await instance.ExecuteUnderLockAsync((_) =>
266266 Assert . Equal ( 1 , callCount ) ;
267267 }
268268
269- [ Fact ]
269+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
270270 public async Task ExecuteUnderLockAsync_AvoidsOverlappingWithDispose ( )
271271 {
272272 var firstEntered = new AsyncManualResetEvent ( ) ;
@@ -292,7 +292,7 @@ Task firstAction() => instance.ExecuteUnderLockAsync(async (ct) =>
292292 await AssertNoOverlap ( firstAction , disposeAction , firstEntered , firstRelease , disposeEntered ) ;
293293 }
294294
295- [ Fact ]
295+ [ Fact ( Skip = "https://github.com/dotnet/project-system/issues/9765" ) ]
296296 public async Task ExecuteUnderLockAsyncOfT_AvoidsOverlappingWithDispose ( )
297297 {
298298 var firstEntered = new AsyncManualResetEvent ( ) ;
0 commit comments