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:
Diffstat (limited to 'mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs')
-rw-r--r--mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs19
1 files changed, 10 insertions, 9 deletions
diff --git a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs
index 69e38cf8178..25db0267ad6 100644
--- a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs
+++ b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigExcC14NTransformTest.cs
@@ -339,16 +339,17 @@ namespace MonoTests.System.Security.Cryptography.Xml {
Assert.AreEqual (ExcC14NSpecExample4Output, res, "Example 4 from c14n spec - Character Modifications and Character References (without comments)");
}
- [Test]
- public void ExcC14NSpecExample5 ()
- {
- using (StreamWriter sw = new StreamWriter ("world.txt", false, Encoding.ASCII)) {
- sw.Write ("world");
- sw.Close ();
+ [Test]
+ [Ignore(".NET DOM implementation does not match W3C DOM specification.")]
+ public void ExcC14NSpecExample5 ()
+ {
+ using (StreamWriter sw = new StreamWriter ("world.txt", false, Encoding.ASCII)) {
+ sw.Write ("world");
+ sw.Close ();
+ }
+ string res = ExecuteXmlDSigExcC14NTransform (ExcC14NSpecExample5Input);
+ Assert.AreEqual (ExcC14NSpecExample5Output, res, "Example 5 from c14n spec - Entity References (without comments)");
}
- string res = ExecuteXmlDSigExcC14NTransform (ExcC14NSpecExample5Input);
- Assert.AreEqual (ExcC14NSpecExample5Output, res, "Example 5 from c14n spec - Entity References (without comments)");
- }
[Test]
public void ExcC14NSpecExample6 ()