File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed
InMemory.FunctionalTests/Http2 Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,15 @@ public InteropTests(ITestOutputHelper output)
29
29
public Task EmptyUnary ( ) => InteropTestCase ( "empty_unary" ) ;
30
30
31
31
[ Fact ]
32
- [ QuarantinedTest ]
33
32
public Task LargeUnary ( ) => InteropTestCase ( "large_unary" ) ;
34
33
35
34
[ Fact ]
36
- [ QuarantinedTest ]
37
35
public Task ClientStreaming ( ) => InteropTestCase ( "client_streaming" ) ;
38
36
39
37
[ Fact ]
40
38
public Task ServerStreaming ( ) => InteropTestCase ( "server_streaming" ) ;
41
39
42
40
[ Fact ]
43
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/22101" ) ]
44
41
public Task PingPong ( ) => InteropTestCase ( "ping_pong" ) ;
45
42
46
43
[ Fact ]
@@ -56,7 +53,6 @@ public InteropTests(ITestOutputHelper output)
56
53
public Task TimeoutOnSleepingServer ( ) => InteropTestCase ( "timeout_on_sleeping_server" ) ;
57
54
58
55
[ Fact ]
59
- [ QuarantinedTest ]
60
56
public Task CustomMetadata ( ) => InteropTestCase ( "custom_metadata" ) ;
61
57
62
58
[ Fact ]
@@ -72,15 +68,12 @@ public InteropTests(ITestOutputHelper output)
72
68
public Task UnimplementedMethod ( ) => InteropTestCase ( "unimplemented_method" ) ;
73
69
74
70
[ Fact ]
75
- [ QuarantinedTest ( "Server is getting 'identity' encoding. Will resolve in gRPC project when updated SDK is available." ) ]
76
71
public Task ClientCompressedUnary ( ) => InteropTestCase ( "client_compressed_unary" ) ;
77
72
78
73
[ Fact ]
79
- [ QuarantinedTest ( "Server is getting 'identity' encoding. Will resolve in gRPC project when updated SDK is available." ) ]
80
74
public Task ClientCompressedStreaming ( ) => InteropTestCase ( "client_compressed_streaming" ) ;
81
75
82
76
[ Fact ]
83
- [ QuarantinedTest ]
84
77
public Task ServerCompressedUnary ( ) => InteropTestCase ( "server_compressed_unary" ) ;
85
78
86
79
[ Fact ]
Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ public ShutdownTests()
43
43
44
44
[ CollectDump ]
45
45
[ ConditionalFact ]
46
- [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/9985" , Queues = "Fedora.28.Amd64;Fedora.28.Amd64.Open" ) ]
47
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/25046" ) ]
48
46
public async Task GracefulShutdownWaitsForRequestsToFinish ( )
49
47
{
50
48
var requestStarted = new TaskCompletionSource ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -100,7 +98,6 @@ public async Task GracefulShutdownWaitsForRequestsToFinish()
100
98
}
101
99
102
100
[ ConditionalFact ]
103
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/21521" ) ] // Test still quarantined due to Sockets.Functional tests.
104
101
public async Task GracefulTurnsAbortiveIfRequestsDoNotFinish ( )
105
102
{
106
103
var requestStarted = new TaskCompletionSource ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
Original file line number Diff line number Diff line change @@ -147,7 +147,6 @@ await ExpectAsync(Http2FrameType.PING,
147
147
}
148
148
149
149
[ Fact ]
150
- [ QuarantinedTest ]
151
150
public async Task PING_NoKeepAliveTimeout_DoesNotResetKeepAliveTimeout ( )
152
151
{
153
152
var mockSystemClock = _serviceContext . MockSystemClock ;
You can’t perform that action at this time.
0 commit comments