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:
-rw-r--r--mcs/class/System.XML/Test/System.Xml/ChangeLog4
-rw-r--r--mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs6
2 files changed, 10 insertions, 0 deletions
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 <drieseng@users.sourceforge.net>
+
+ * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
+
2005-12-26 Atsushi Enomoto <atsushi@ximian.com>
* 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", "");