Enable multi loop+thread tests

Resolves #232
This commit is contained in:
Ben Adams 2015-11-13 08:44:27 +00:00
parent a95318c616
commit d493667851
2 changed files with 0 additions and 4 deletions

View File

@ -15,7 +15,6 @@ namespace Microsoft.AspNet.Server.Kestrel.FunctionalTests
{
public class ThreadCountTests
{
[Theory(Skip = "https://github.com/aspnet/KestrelHttpServer/issues/232"), MemberData(nameof(OneToTen))]
public async Task ZeroToTenThreads(int threadCount)
{
var config = new ConfigurationBuilder()

View File

@ -21,7 +21,6 @@ namespace Microsoft.AspNet.Server.KestrelTests
_logger = engine.Log;
}
[Fact(Skip = "Waiting for adding support for multi loop in libuv")]
public void InitAndCloseServerPipe()
{
var loop = new UvLoopHandle(_logger);
@ -39,7 +38,6 @@ namespace Microsoft.AspNet.Server.KestrelTests
}
[Fact(Skip = "Waiting for adding support for multi loop in libuv")]
public void ServerPipeListenForConnections()
{
var loop = new UvLoopHandle(_logger);
@ -112,7 +110,6 @@ namespace Microsoft.AspNet.Server.KestrelTests
}
[Fact(Skip = "Waiting for adding support for multi loop in libuv")]
public void ServerPipeDispatchConnections()
{
var pipeName = @"\\.\pipe\ServerPipeDispatchConnections" + Guid.NewGuid().ToString("n");