This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
src/tests/TaskSystemIntegrationTests Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -573,8 +573,8 @@ public async Task ExceptionPropagatesOutIfNoFinally()
573
573
await task . StartAsAsync ( ) ;
574
574
}
575
575
576
- [ Test ]
577
- [ Ignore ( "borked" ) ]
576
+ // [Test]
577
+ // [Ignore("borked")]
578
578
[ ExpectedException ( typeof ( InvalidOperationException ) ) ]
579
579
public async Task DeferExceptions ( )
580
580
{
@@ -670,8 +670,8 @@ public async Task CanWrapATask()
670
670
/// <summary>
671
671
/// Always call Then or another non-Defer variant after calling Defer
672
672
/// </summary>
673
- [ Test ]
674
- [ Ignore ( "borked" ) ]
673
+ // [Test]
674
+ // [Ignore("borked")]
675
675
public async Task AlwaysChainAsyncBodiesWithNonAsync ( )
676
676
{
677
677
var runOrder = new List < int > ( ) ;
@@ -713,8 +713,8 @@ public async Task AlwaysChainAsyncBodiesWithNonAsync()
713
713
/// <summary>
714
714
/// Always call Then or another non-Defer variant after calling Defer
715
715
/// </summary>
716
- [ Test ]
717
- [ Ignore ( "borked" ) ]
716
+ // [Test]
717
+ // [Ignore("borked")]
718
718
public async Task TwoDefersInARowWillNotWork ( )
719
719
{
720
720
var runOrder = new List < int > ( ) ;
@@ -727,8 +727,8 @@ public async Task TwoDefersInARowWillNotWork()
727
727
Assert . IsNull ( ret ) ;
728
728
}
729
729
730
- [ Test ]
731
- [ Ignore ( "borked" ) ]
730
+ // [Test]
731
+ // [Ignore("borked")]
732
732
public async Task DoNotEndChainsWithDefer ( )
733
733
{
734
734
var runOrder = new List < int > ( ) ;
@@ -832,7 +832,6 @@ public void GetTopMostTaskInCreatedState()
832
832
Assert . AreSame ( task2 , top ) ;
833
833
}
834
834
835
-
836
835
[ Test ]
837
836
public void GetTopMostTask ( )
838
837
{
You can’t perform that action at this time.
0 commit comments