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
path: root/mcs/class
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-10-15 19:26:19 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-10-15 19:26:19 +0400
commit544c75429d1d2c9cf9c6783dbd552ef6f9612e15 (patch)
treeba32591f26a875863a4ba2eab92e3bbf67983df1 /mcs/class
parent4e5c2dc69a78ea089e542c90fceec6bdcb699371 (diff)
2002-10-16 Nick Drochak <ndrochak@gol.com>
* AllTests.cs: Disable tests that use components were are excluding from corlib. * SHA1Test.cs: same svn path=/trunk/mcs/; revision=8288
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs6
-rw-r--r--mcs/class/corlib/Test/System.Security.Cryptography/ChangeLog6
-rw-r--r--mcs/class/corlib/Test/System.Security.Cryptography/SHA1Test.cs2
3 files changed, 10 insertions, 4 deletions
diff --git a/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs b/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs
index 1db7d4729e5..531b6ce8625 100644
--- a/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs
+++ b/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs
@@ -48,15 +48,15 @@ namespace MonoTests.System.Security.Cryptography {
{
TestSuite suite = new TestSuite ();
suite.AddTest (SymmetricAlgorithmTest.Suite);
- suite.AddTest (AsymmetricAlgorithmTest.Suite);
+// suite.AddTest (AsymmetricAlgorithmTest.Suite);
suite.AddTest (RNGCryptoServiceProviderTest.Suite);
suite.AddTest (FromBase64TransformTest.Suite);
suite.AddTest (RijndaelManagedTest.Suite);
suite.AddTest (MD5Test.Suite);
suite.AddTest (RC2Test.Suite);
suite.AddTest (CryptoConfigTest.Suite);
- suite.AddTest (DSATest.Suite);
- suite.AddTest (RSATest.Suite);
+// suite.AddTest (DSATest.Suite);
+// suite.AddTest (RSATest.Suite);
suite.AddTest (RandomNumberGeneratorTest.Suite);
suite.AddTest (HashAlgorithmTest.Suite);
suite.AddTest (SHA1Test.Suite);
diff --git a/mcs/class/corlib/Test/System.Security.Cryptography/ChangeLog b/mcs/class/corlib/Test/System.Security.Cryptography/ChangeLog
index eefd3bb3173..7f3892a436d 100644
--- a/mcs/class/corlib/Test/System.Security.Cryptography/ChangeLog
+++ b/mcs/class/corlib/Test/System.Security.Cryptography/ChangeLog
@@ -1,3 +1,9 @@
+2002-10-16 Nick Drochak <ndrochak@gol.com>
+
+ * AllTests.cs: Disable tests that use components were are excluding
+ from corlib.
+ * SHA1Test.cs: same
+
2002-10-14 Sebastien Pouliot <spouliot@videotron.ca>
* AllTests.cs: Added suite for PKCS1MaskGenerationMethod
diff --git a/mcs/class/corlib/Test/System.Security.Cryptography/SHA1Test.cs b/mcs/class/corlib/Test/System.Security.Cryptography/SHA1Test.cs
index 60bbf8bfe17..5213dd5c36f 100644
--- a/mcs/class/corlib/Test/System.Security.Cryptography/SHA1Test.cs
+++ b/mcs/class/corlib/Test/System.Security.Cryptography/SHA1Test.cs
@@ -40,7 +40,7 @@ public class SHA1Test : HashAlgorithmTest
}
}
- public void AssertEquals (string msg, byte[] array1, byte[] array2)
+ public new void AssertEquals (string msg, byte[] array1, byte[] array2)
{
AllTests.AssertEquals (msg, array1, array2);
}