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 Testruntime.cs,1.5,1.6


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime Testruntime.cs,1.5,1.6
Date: Thu, 28 Nov 2002 22:42:05 -0500

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

Modified Files:
        Testruntime.cs 
Log Message:


Modifications to support the ECMA-compatible compilation mode.


Index: Testruntime.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/tests/runtime/Testruntime.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** Testruntime.cs      29 Nov 2002 03:05:26 -0000      1.5
--- Testruntime.cs      29 Nov 2002 03:42:03 -0000      1.6
***************
*** 27,39 ****
        public static TestSuite Suite()
                        {
!                               TestSuite suite = new TestSuite("Basic Runtime 
Tests");
                                suite.AddTests(typeof(TestBoolean));
-                               suite.AddTests(typeof(TestGuid));
                                suite.AddTests(typeof(TestSByte));
                                suite.AddTests(typeof(TestString));
                                suite.AddTests(typeof(TestStringBuilder));
                                suite.AddTests(typeof(TestArrayList));
!                               suite.AddTest(TestCryptography.Suite());
!                               return suite;
                        }
  
--- 27,43 ----
        public static TestSuite Suite()
                        {
!                               TestSuite fullSuite = new TestSuite("Runtime 
Tests");
!                               TestSuite suite = new TestSuite("Core Class 
Tests");
                                suite.AddTests(typeof(TestBoolean));
                                suite.AddTests(typeof(TestSByte));
                                suite.AddTests(typeof(TestString));
                                suite.AddTests(typeof(TestStringBuilder));
                                suite.AddTests(typeof(TestArrayList));
!                       #if !ECMA_COMPAT
!                               suite.AddTests(typeof(TestGuid));
!                       #endif
!                               fullSuite.AddTest(suite);
!                               fullSuite.AddTest(TestCryptography.Suite());
!                               return fullSuite;
                        }
  





reply via email to

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