Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-07-31 22:06:05 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-07-31 22:06:05 +0300
commit832f63035ff9912284e4acf2093d10437bc2a063 (patch)
tree104cf1772c2417e2cf2c042ce03c357efec6725c /mcs/class/System.Runtime.Remoting
parentdd36f93fa52e79dc45f4c881cf51216e0296885a (diff)
[System.Runtime.Remoting] Use NotWorking category for test instead of Ignore attribute
The TestFixtureSetUp would sometimes fail in CI, but none of the tests in this class are actually run since they are all either [Category("NotWorking")] or [Ignore]. Moving the one test from Ignore to NotWorking category allows NUnit to recognize there are no tests to run and skips the unnecessary TestFixtureSetUp completely.
Diffstat (limited to 'mcs/class/System.Runtime.Remoting')
-rw-r--r--mcs/class/System.Runtime.Remoting/Test/HttpServerChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Runtime.Remoting/Test/HttpServerChannelTests.cs b/mcs/class/System.Runtime.Remoting/Test/HttpServerChannelTests.cs
index e15a51bfe02..a34e32c78a4 100644
--- a/mcs/class/System.Runtime.Remoting/Test/HttpServerChannelTests.cs
+++ b/mcs/class/System.Runtime.Remoting/Test/HttpServerChannelTests.cs
@@ -94,7 +94,7 @@ namespace MonoTests.Remoting {
};
[Test] // HttpChannel.Parse ()
- [Ignore ("Fails on MS")]
+ [Category ("NotWorking")] // Fails on MS
public void ParseURL ()
{
HttpChannel channel;