From 2ff0bdf8d2aba15057e61ee0cae1831c4dd656b0 Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Tue, 27 Dec 2005 08:37:50 +0000 Subject: [PATCH] * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1. svn path=/trunk/mcs/; revision=54859 --- mcs/class/System.XML/Test/System.Xml/ChangeLog | 4 ++++ mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/mcs/class/System.XML/Test/System.Xml/ChangeLog b/mcs/class/System.XML/Test/System.Xml/ChangeLog index ca84f27a785..85b2f984740 100644 --- a/mcs/class/System.XML/Test/System.Xml/ChangeLog +++ b/mcs/class/System.XML/Test/System.Xml/ChangeLog @@ -1,3 +1,7 @@ +2005-12-27 Gert Driesen + + * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1. + 2005-12-26 Atsushi Enomoto * XmlTextWriterTests.cs : enabled diff --git a/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs b/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs index 9d952de9693..a70f1a124d0 100644 --- a/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs +++ b/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs @@ -504,6 +504,9 @@ namespace MonoTests.System.Xml } [Test] +#if ONLY_1_1 + [Category ("NotDotNet")] // MS.NET 1.1 does not allow zero-length namespace URI +#endif public void WriteStartElement_Prefix_EmptyNamespace () { xtw.WriteStartElement ("x", "whatever", ""); @@ -1007,6 +1010,9 @@ namespace MonoTests.System.Xml } [Test] +#if ONLY_1_1 + [Category ("NotDotNet")] // MS.NET 1.1 does not allow zero-length namespace URI +#endif public void NamespacesPrefixWithEmptyAndNullNamespaceEmpty () { xtw.WriteStartElement ("foo", "bar", ""); -- 2.25.1