dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime/System/Security/Cryptog


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime/System/Security/Cryptography CryptoTestCase.cs,1.8,1.9 TestAES.cs,1.3,1.4 TestCryptography.cs,1.2,1.3 TestDES.cs,1.4,1.5 TestMD5.cs,1.2,1.3 TestRC2.cs,1.3,1.4 TestRNG.cs,1.2,1.3 TestSHA1.cs,1.2,1.3 TestSHA256.cs,1.2,1.3 TestSHA384.cs,1.2,1.3 TestSHA512.cs,1.2,1.3 TestTripleDES.cs,1.4,1.5
Date: Thu, 28 Nov 2002 22:42:05 -0500

Update of 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography
In directory 
subversions:/tmp/cvs-serv17439/tests/runtime/System/Security/Cryptography

Modified Files:
        CryptoTestCase.cs TestAES.cs TestCryptography.cs TestDES.cs 
        TestMD5.cs TestRC2.cs TestRNG.cs TestSHA1.cs TestSHA256.cs 
        TestSHA384.cs TestSHA512.cs TestTripleDES.cs 
Log Message:


Modifications to support the ECMA-compatible compilation mode.


Index: CryptoTestCase.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/CryptoTestCase.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** CryptoTestCase.cs   29 Nov 2002 00:33:38 -0000      1.8
--- CryptoTestCase.cs   29 Nov 2002 03:42:03 -0000      1.9
***************
*** 26,29 ****
--- 26,31 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class CryptoTestCase : TestCase
  {
***************
*** 806,807 ****
--- 808,811 ----
  
  }; // CryptoTestCase
+ 
+ #endif // !ECMA_COMPAT

Index: TestAES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestAES.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestAES.cs  29 Nov 2002 00:33:38 -0000      1.3
--- TestAES.cs  29 Nov 2002 03:42:03 -0000      1.4
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestAES : CryptoTestCase
  {
***************
*** 141,142 ****
--- 143,146 ----
  
  }; // TestAES
+ 
+ #endif // !ECMA_COMPAT

Index: TestCryptography.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestCryptography.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestCryptography.cs 27 Nov 2002 02:13:22 -0000      1.2
--- TestCryptography.cs 29 Nov 2002 03:42:03 -0000      1.3
***************
*** 28,31 ****
--- 28,32 ----
                        {
                                TestSuite suite = new TestSuite("Cryptography 
Tests");
+                       #if !ECMA_COMPAT
                                suite.AddTests(typeof(TestAES));
                                suite.AddTests(typeof(TestDES));
***************
*** 38,41 ****
--- 39,43 ----
                                suite.AddTests(typeof(TestSHA512));
                                suite.AddTests(typeof(TestRNG));
+                       #endif
                                return suite;
                        }

Index: TestDES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestDES.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TestDES.cs  29 Nov 2002 00:33:38 -0000      1.4
--- TestDES.cs  29 Nov 2002 03:42:03 -0000      1.5
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestDES : CryptoTestCase
  {
***************
*** 349,350 ****
--- 351,354 ----
  
  }; // TestDES
+ 
+ #endif // !ECMA_COMPAT

Index: TestMD5.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestMD5.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestMD5.cs  26 Nov 2002 11:52:00 -0000      1.2
--- TestMD5.cs  29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestMD5 : CryptoTestCase
  {
***************
*** 150,151 ****
--- 152,155 ----
  
  }; // TestMD5
+ 
+ #endif // !ECMA_COMPAT

Index: TestRC2.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestRC2.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestRC2.cs  29 Nov 2002 00:33:38 -0000      1.3
--- TestRC2.cs  29 Nov 2002 03:42:03 -0000      1.4
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestRC2 : CryptoTestCase
  {
***************
*** 100,101 ****
--- 102,105 ----
  
  }; // TestRC2
+ 
+ #endif // !ECMA_COMPAT

Index: TestRNG.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestRNG.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestRNG.cs  27 Nov 2002 02:56:30 -0000      1.2
--- TestRNG.cs  29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestRNG : TestCase
  {
***************
*** 304,305 ****
--- 306,309 ----
  
  }; // TestRNG
+ 
+ #endif // !ECMA_COMPAT

Index: TestSHA1.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA1.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestSHA1.cs 26 Nov 2002 11:52:00 -0000      1.2
--- TestSHA1.cs 29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestSHA1 : CryptoTestCase
  {
***************
*** 94,95 ****
--- 96,99 ----
  
  }; // TestSHA1
+ 
+ #endif // !ECMA_COMPAT

Index: TestSHA256.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA256.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestSHA256.cs       26 Nov 2002 11:52:00 -0000      1.2
--- TestSHA256.cs       29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestSHA256 : CryptoTestCase
  {
***************
*** 98,99 ****
--- 100,103 ----
  
  }; // TestSHA256
+ 
+ #endif // !ECMA_COMPAT

Index: TestSHA384.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA384.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestSHA384.cs       26 Nov 2002 11:52:00 -0000      1.2
--- TestSHA384.cs       29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestSHA384 : CryptoTestCase
  {
***************
*** 103,104 ****
--- 105,108 ----
  
  }; // TestSHA384
+ 
+ #endif // !ECMA_COMPAT

Index: TestSHA512.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA512.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TestSHA512.cs       26 Nov 2002 11:52:00 -0000      1.2
--- TestSHA512.cs       29 Nov 2002 03:42:03 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestSHA512 : CryptoTestCase
  {
***************
*** 107,108 ****
--- 109,112 ----
  
  }; // TestSHA512
+ 
+ #endif // !ECMA_COMPAT

Index: TestTripleDES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestTripleDES.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TestTripleDES.cs    29 Nov 2002 00:33:38 -0000      1.4
--- TestTripleDES.cs    29 Nov 2002 03:42:03 -0000      1.5
***************
*** 23,26 ****
--- 23,28 ----
  using System.Security.Cryptography;
  
+ #if !ECMA_COMPAT
+ 
  public class TestTripleDES : CryptoTestCase
  {
***************
*** 319,320 ****
--- 321,324 ----
  
  }; // TestTripleDES
+ 
+ #endif // !ECMA_COMPAT





reply via email to

[Prev in Thread] Current Thread [Next in Thread]