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:
authorMarek Safar <marek.safar@gmail.com>2015-02-04 20:46:30 +0300
committerMarek Safar <marek.safar@gmail.com>2015-02-04 20:46:30 +0300
commitda7d598940b8c3eaf7925378097d1f9f8ccafa1c (patch)
treeaba82b96bd4f18bc02df444898edb2a4c5888cac /mcs/class/System.XML/Test
parent798e9c0c418da4ad66e8bfeae59213e323617e43 (diff)
[system.xml] Disable failing test, requires reference source implementation
Diffstat (limited to 'mcs/class/System.XML/Test')
-rw-r--r--mcs/class/System.XML/Test/System.Xml/XmlConvertTests.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml/XmlConvertTests.cs b/mcs/class/System.XML/Test/System.Xml/XmlConvertTests.cs
index 295c4ef08e1..33f7070b1cf 100644
--- a/mcs/class/System.XML/Test/System.Xml/XmlConvertTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml/XmlConvertTests.cs
@@ -1025,6 +1025,13 @@ namespace MonoTests.System.Xml
XmlConvert.ToDateTime ("0001-02-03T10:20:30.0000", m);
XmlConvert.ToDateTime ("0001-02-03T10:20:30.0000Z", m);
XmlConvert.ToDateTime ("0001-02-03T10:20:30.0000+09:00", m);
+ }
+
+ [Test]
+ [Category("NotWorking")]
+ public void XmlDateTimeSerializationModeBadFormats ()
+ {
+ XmlDateTimeSerializationMode m = XmlDateTimeSerializationMode.RoundtripKind;
try {
XmlConvert.ToDateTime ("0001-02-03T", m);