Skip to content

Commit

Permalink
Re-enable several System.Threading tests
Browse files Browse the repository at this point in the history
With dotnet/coreclr#1387 merged, these can now be enabled.
  • Loading branch information
stephentoub authored and rajansingh10 committed Oct 16, 2015
1 parent a667bfc commit 4bdfd4d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace InterProcessCommunication.Tests
{
public class EventWaitHandleTests : RemoteExecutorTestBase
{
[ActiveIssue("https://github.com/dotnet/coreclr/issues/1237", PlatformID.AnyUnix)]
[PlatformSpecific(PlatformID.Windows)] // names aren't supported on Unix
[Theory]
[InlineData(EventResetMode.ManualReset)]
[InlineData(EventResetMode.AutoReset)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace InterProcessCommunication.Tests
{
public class SemaphoreTests : RemoteExecutorTestBase
{
[ActiveIssue("https://github.com/dotnet/coreclr/issues/1237", PlatformID.AnyUnix)]
[PlatformSpecific(PlatformID.Windows)] // names aren't supported on Unix
[Fact]
public void PingPong()
{
Expand Down
2 changes: 0 additions & 2 deletions src/System.Threading/tests/EventWaitHandleTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public void Ctor_InvalidNames()
Assert.Throws<ArgumentException>(() => new EventWaitHandle(true, EventResetMode.AutoReset, new string('a', 1000)));
}

[ActiveIssue("https://github.com/dotnet/coreclr/issues/1237")]
[PlatformSpecific(PlatformID.AnyUnix)]
[Fact]
public void Ctor_NamesArentSupported_Unix()
Expand Down Expand Up @@ -130,7 +129,6 @@ public void OpenExisting_Windows()
}
}

[ActiveIssue("https://github.com/dotnet/coreclr/issues/1237")]
[PlatformSpecific(PlatformID.AnyUnix)]
[Fact]
public void OpenExisting_NotSupported_Unix()
Expand Down
1 change: 0 additions & 1 deletion src/System.Threading/tests/MutexTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public void Ctor_ConstructWaitRelease()
}
}

[ActiveIssue("https://github.com/dotnet/coreclr/issues/1237")]
[PlatformSpecific(PlatformID.AnyUnix)]
[Fact]
public void Ctor_NamesNotSupported_Unix()
Expand Down

0 comments on commit 4bdfd4d

Please sign in to comment.