ChangeLog 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. 2007-10-21 Gert Driesen <[email protected]>
  2. * ThreadTest.cs: On 2.0 profile, enable > 0 tests for GetHashCode.
  3. Added test that asserts if the hashcode of two threads is distinct.
  4. 2007-10-20 Raja R Harinath <[email protected]>
  5. * TimerTest.cs (TestHeavyCreationLoad): Don't shadow a variable name.
  6. 2007-10-19 Dick Porter <[email protected]>
  7. * ThreadTest.cs: Re-enable ManagedThreadId test too
  8. 2007-10-19 Dick Porter <[email protected]>
  9. * ThreadTest.cs: Re-enable GetHashCodeTest
  10. 2007-10-05 Dick Porter <[email protected]>
  11. * ThreadTest.cs: Disable GetHashCodeTest while I figure out why
  12. GetHashCode sometimes returns 0.
  13. 2007-09-25 Dick Porter <[email protected]>
  14. * ThreadTest.cs: Enable GetHashCodeTest
  15. 2007-09-18 Gert Driesen <[email protected]>
  16. * ThreadTest.cs: Added GetHashCode test for bug #325566.
  17. 2007-09-05 Gert Driesen <[email protected]>
  18. * ThreadTest.cs: Added test for bug #82700. Re-enabled and fixed some
  19. tests that pass on my two boxes. Shoot me if these break the buildbots.
  20. Cleaned up some tests.
  21. 2007-08-10 Gert Driesen <[email protected]>
  22. * ThreadTest.cs: Enabled test for bug #81658, and uncommented code
  23. that relies on that fix.
  24. 2007-07-22 Gert Driesen <[email protected]>
  25. * AutoResetEventTest.cs: Added test for verifying effect of assigning
  26. new SafeWaitHandle on the previous one. Use meaningful names for
  27. tests. Avoid unref warning. Removed usage of deprecated Assertion
  28. class. Spaces to tabs.
  29. 2007-07-21 Miguel de Icaza <[email protected]>
  30. * AutoResetEventTest.cs: Integrated test based on Gert's email
  31. (only the first chunk).
  32. 2007-07-08 Gert Driesen <[email protected]>
  33. * ThreadTest.cs: Removed tests for bug #81930, since other tests can
  34. break these by changing the CurrentCulture or CurrentUICulture.
  35. Instead I've added a standalone test for this (in the gert module).
  36. 2007-06-24 Gert Driesen <[email protected]>
  37. * ThreadTest.cs: Added tests for bug #81930.
  38. 2007-06-08 Gert Driesen <[email protected]>
  39. * ThreadTest.cs: Enabled test for bug #81720.
  40. 2007-05-23 Gert Driesen <[email protected]>
  41. * ThreadTest.cs: Added test for bug #81720. Improved test for
  42. bug #81658. Added test for changing ApartmentState on background
  43. thread.
  44. 2007-05-17 Gert Driesen <[email protected]>
  45. * ThreadTest.cs: Use Assert instead of deprecated Assertion class.
  46. Code formatting. Added test for bug #81658.
  47. 2007-05-16 Gert Driesen <[email protected]>
  48. * ThreadTest.cs: Fix build using csc 1.x.
  49. 2007-05-09 Jonathan Chambers <[email protected]>
  50. * ThreadTest.cs: Add ApartmentState related tests.
  51. 2007-04-03 Gert Driesen <[email protected]>
  52. * MutexTest.cs: Enabled test for bug #79358.
  53. 2006-12-13 Gert Driesen <[email protected]>
  54. * MutexTest.cs: Added test for bug #79358. Code formatting, no longer
  55. derive from (deprecated) TestCase.
  56. 2006-06-14 Sebastien Pouliot <[email protected]>
  57. * ExecutionContextTest.cs: Changed Run test to execute only under
  58. CAS until bug #78306 (CompressedStack) is fixed.
  59. 2006-06-04 Zoltan Varga <[email protected]>
  60. * InterlockedTest.cs: Fix Interlocked.Add tests.
  61. 2006-04-30 Gert Driesen <[email protected]>
  62. * TimerTest.cs: Added test for bug #78208. Marked individual tests
  63. NotWorking instead of the test class to enable test for bug #78208.
  64. 2006-01-18 Atsushi Enomoto <[email protected]>
  65. * ThreadTest.cs : mark not-working tests as [Ignore] since it blocks
  66. run-test-ondotnet under 2.0 profile.
  67. 2006-01-18 Atsushi Enomoto <[email protected]>
  68. * MutexTest.cs : Marked TestWaitAndFoget1 as [Ignore]. Under
  69. .NET 2.0 it breaks nunit-console (breaks its own AppDomain).
  70. 2005-10-06 Sebastien Pouliot <[email protected]>
  71. * ThreadTest.cs: Added regression test for #76332 when an IPrincipal
  72. instance should be copied in any new thread created.
  73. 2005-06-30 Ben Maurer <[email protected]>
  74. * MutexTest.cs: Redisable. They didn't work so well ;-(.
  75. 2005-06-28 Ben Maurer <[email protected]>
  76. * MutexTest.cs: Re-enable the mutex tests. They seem to work for
  77. me now when I ran them in a loop on the smp box.
  78. 2005-06-06 Gonzalo Paniagua Javier <[email protected]>
  79. * ThreadTest.cs: sanitize waiting for a thread that might be already
  80. done. Added test for Thread.Start called after thread.Abort, which used
  81. to segfault.
  82. 2005-05-05 Gonzalo Paniagua Javier <[email protected]>
  83. * MonitorTest.cs: a pair of tests for Monitor.
  84. 2005-04-30 Gonzalo Paniagua Javier <[email protected]>
  85. * AutoResetEventTest.cs: test for AutoResetEvent.
  86. 2005-03-28 Sebastien Pouliot <[email protected]>
  87. * CompressedStackCas.cs: New. CAS unit tests for CompressedStack.
  88. * CompressedStackTest.cs: New. Unit tests for CompressedStack.
  89. * ExecutionContextCas.cs: New. CAS unit tests for ExecutionContext.
  90. * ExecutionContextTest.cs: New. Unit tests for ExecutionContext.
  91. 2005-03-24 Sebastien Pouliot <[email protected]>
  92. * MutexCas.cs: New. CAS unit tests for Mutex.
  93. * ThreadCas.cs: New. CAS unit tests for Thread.
  94. * WaitHandleCas.cs: New. CAS unit tests for WaitHandle.
  95. 2005-02-20 Zoltan Varga <[email protected]>
  96. * InterlockedTest.cs: Enable 2.0 tests.
  97. * InterlockedTest.cs: New file. Tests from
  98. Luca Barbieri ([email protected]).
  99. 2005-02-16 Ben Maurer <[email protected]>
  100. * TimerTest.cs: Disable this test. It seems to be completely
  101. unreliable, likely because it depends on a race. See comment in
  102. the source.
  103. 2005-01-31 Nick Drochak <[email protected]>
  104. * ThreadTest.cs: SuspendAbort is not working it seems.
  105. 2005-01-18 Nick Drochak <[email protected]>
  106. * ThreadTest.cs: Thread.Priority is a MonoTODO. Ignore Test.
  107. 2004-09-22 Lluis Sanchez Gual <[email protected]>
  108. * ThreadTest.cs, MutexTest.cs: Don't leave any thread alive, even if the
  109. thread fails. Added a timeout to active waits.
  110. 2004-08-25 Nick Drochak <[email protected]>
  111. * ThreadTest.cs: Some tests hang on MS.NET so ignore them.
  112. 2004-06-22 Dick Porter <[email protected]>
  113. * MutexTest.cs: No need to ignore these tests now
  114. * ThreadTest.cs: You can't Start() a thread that's been aborted.
  115. Improve state tests.
  116. 2004-06-17 Lluis Sanchez Gual <[email protected]>
  117. * ThreadTest.cs: Improved test.
  118. 2004-06-15 Lluis Sanchez Gual <[email protected]>
  119. * TimerTest.cs: Added more tests.
  120. * ThreadTest.cs: Added new tests for Thread.Suspend.
  121. 2004-06-10 Lluis Sanchez Gual <[email protected]>
  122. * ThreadTest.cs: Removed Ignore attribute from several threading tests that
  123. failed because of Thread.Abort.
  124. 2004-05-01 Nick Drochak <[email protected]>
  125. * ThreadTest.cs: Un-ignore some tests that seem to run pretty well
  126. now. Getting one failure from these, but at least they run without
  127. crasing, or trowing some nasty _wapi exception thingy.
  128. 2004-04-27 Nick Drochak <[email protected]>
  129. * ReaderWriterLockTest.cs: Remove compiler warnings.
  130. 2004-04-13 Lluis Sanchez Gual <[email protected]>
  131. * ReaderWriterLockTest.cs: Added more tests for bugs 55911 and 55909.
  132. 2004-04-13 Sebastien Pouliot <[email protected]>
  133. * ThreadTest.cs: Removed [Ignore] on WindowsPrincipal test. Adjusted
  134. CurrentPrincipal tests to work on both Windows and Linux.
  135. 2004-04-09 Zoltan Varga <[email protected]>
  136. * TimerTest.cs: Beginnings of regression tests for the Timer class.
  137. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  138. * ReaderWriterLockTest.cs: Added one more test.
  139. 2004-04-06 Lluis Sanchez Gual <[email protected]>
  140. * ReaderWriterLockTest.cs: New tests for System.Threading.ReaderWriterLock.
  141. 2004-03-19 David Sheldon <[email protected]>
  142. * ThreadTest.cs: Removed Ignore attributes from
  143. CurrentPrincipal_PrincipalPolicy_NoPrincipal and
  144. CurrentPrincipal_PrincipalPolicy_UnauthenticatedPrincipal
  145. Now that bug 54041 is fixed, and they wont livelock.
  146. 2004-02-05 Sebastien Pouliot <[email protected]>
  147. * ThreadTest.cs: Added unit tests for CurrentPrincipal.
  148. 2003-01-28 Nick Drochak <[email protected]>
  149. * MutexTest.cs: Ignore tests that hang mono.
  150. * ThreadTest.cs: Ignore tests that hang mono.
  151. 2003/01/23 Nick Drochak <[email protected]>
  152. * ThreadTest.cs: Test for alternate possibilities
  153. 2003-01-13 Nick Drochak <[email protected]>
  154. * MutexTest.cs: Disable some tests that case unhandled exceptions
  155. on MS.NET.
  156. 2002-12-21 Nick Drochak <[email protected]>
  157. * all: make tests build and run under nunit2
  158. 2002-11-29 Eduardo Garcia Cebollero <[email protected]>
  159. * MutexTest.cs : New suite for Mutex.
  160. 2002-11-23 Eduardo Garcia Cebollero <[email protected]>
  161. * ThreadTest.cs : New suite for Thread.
  162. * AllTests.cs : Add the new suite.