Skip to content

Commit

Permalink
2007-10-03 Atsushi Enomoto <atsushi@ximian.com>
Browse files Browse the repository at this point in the history
	* TypeElement.cs : disable a test that causes NRE on .NET.

	* SoapHttpClientProtocolTest.cs: disabled connection-oriented tests
	  that do not work fine on .NET 2.0.


svn path=/trunk/mcs/; revision=86802
  • Loading branch information
atsushieno committed Oct 3, 2007
1 parent 45694f2 commit c32b72f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
@@ -1,3 +1,7 @@
2007-10-03 Atsushi Enomoto <atsushi@ximian.com>

* TypeElement.cs : disable a test that causes NRE on .NET.

2006-01-13 Raja R Harinath <rharinath@novell.com>

* TypeElementTest.cs (Ctors1): Don't expect a null-reference
Expand Down
Expand Up @@ -38,6 +38,7 @@ namespace MonoTests.System.Web.Services.Configuration {
public class TypeElementTest
{
[Test]
[Ignore ("causes NRE on .NET")]
public void Ctors1 ()
{
TypeElement el = new TypeElement ();
Expand Down
@@ -1,3 +1,8 @@
2007-10-03 Atsushi Enomoto <atsushi@ximian.com>

* SoapHttpClientProtocolTest.cs: disabled connection-oriented tests
that do not work fine on .NET 2.0.

2007-06-16 Gert Driesen <drieseng@users.sourceforge.net>

* LogicalMethodInfoTest.cs: Fixed namespace.
Expand Down
Expand Up @@ -44,6 +44,12 @@ namespace MonoTests.System.Web.Services.Protocols
[TestFixture]
public class SoapHttpClientProtocolTest
{
// this kind of connection oriented tests got non-working
// after some Windows updates in .NET 2.0 (1.1 still works).
// It also applied to WCF tests.
#if NET_2_0
[Category ("NotDotNet")]
#endif
[Test] // bug #79988
public void OutParametersTest ()
{
Expand All @@ -66,6 +72,12 @@ public void OutParametersTest ()
}
}

// this kind of connection oriented tests got non-working
// after some Windows updates in .NET 2.0 (1.1 still works).
// It also applied to WCF tests.
#if NET_2_0
[Category ("NotDotNet")]
#endif
[Test] // bug #81886
public void FaultTest ()
{
Expand Down

0 comments on commit c32b72f

Please sign in to comment.