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:
authorAtsushi Eno <atsushieno@gmail.com>2005-05-31 17:08:00 +0400
committerAtsushi Eno <atsushieno@gmail.com>2005-05-31 17:08:00 +0400
commitd7abc587fa24a314e266a6b75e1402d2cc7718c9 (patch)
treed34805d03a88fbd86ecb4eac8fab2c4203535185 /mcs/class/System.Security/Test
parent7be4ff7ca4b683de9cbfe246b1db4856248874e5 (diff)
2005-05-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlDsigC14NWithCommentsTransformTest.cs : added File.Delete() sanity check on CleanUp(). svn path=/trunk/mcs/; revision=45261
Diffstat (limited to 'mcs/class/System.Security/Test')
-rw-r--r--mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog5
-rw-r--r--mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs4
2 files changed, 9 insertions, 0 deletions
diff --git a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog
index 3a1106b986d..6d4b14854e2 100644
--- a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog
+++ b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-31 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XmlDsigC14NWithCommentsTransformTest.cs : added File.Delete()
+ sanity check on CleanUp().
+
2005-05-05 Sebastien Pouliot <sebastien@ximian.com>
* ReferenceTest.cs: Changed AddAllTransforms from Ignored to category
diff --git a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs
index 726fb7f9142..6d41189e1aa 100644
--- a/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs
+++ b/mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs
@@ -50,6 +50,10 @@ namespace MonoTests.System.Security.Cryptography.Xml {
File.Delete ("world.txt");
}
catch {}
+ if (File.Exists ("doc.dtd"))
+ throw new Exception ("File.Delete() is not working.");
+ if (File.Exists ("world.txt"))
+ throw new Exception ("File.Delete() is not working.");
}
[Test]