ChangeLog 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. 2009-09-26 Sebastien Pouliot <[email protected]>
  2. * SocketAsyncEventArgsTest.cs: New. Unit tests
  3. 2009-06-28 Gert Driesen <[email protected]>
  4. * SocketTest.cs: Added tests for argument checks, and improved tests
  5. for disposed socket.
  6. 2009-06-28 Gert Driesen <[email protected]>
  7. * IPv6MulticastOptionTest.cs: Added .ctor and property tests.
  8. * MulticastOptionTest.cs: Added .ctor and property tests.
  9. * SocketTest.cs: Fixed compiler warnings. Improved tests for
  10. closed socket. Added tests fr GetSocketOption, and SetSocketOption
  11. overloads (for Linger, DontLinger, AddMembership and DropMembership).
  12. * UdpClientTest.cs: Added .ctor and JoinMulticastGroup tests.
  13. 2009-06-26 Gonzalo Paniagua Javier <[email protected]>
  14. * SocketTest.cs: tests for DontLinger.
  15. 2009-06-26 Robert Jordan <[email protected]>
  16. * *.cs: Upgrade to new NUnit style.
  17. 2009-01-26 Gonzalo Paniagua Javier <[email protected]>
  18. * SocketTest.cs:
  19. (TestSelect1) avoid RST by reading the bytes from the client.
  20. 2009-01-07 Geoff Norton <[email protected]>
  21. * SocketTest.cs: Disable some tests on the Mac that rely on socket
  22. options that are unavailable.
  23. 2008-12-03 Gonzalo Paniagua Javier <[email protected]>
  24. * UdpClientTest.cs: test closing a UDP socket while receiving.
  25. 2008-11-12 Gonzalo Paniagua Javier <[email protected]>
  26. * SocketTest.cs: added test case based on the one in bug
  27. #443346.
  28. 2008-06-19 Dick Porter <[email protected]>
  29. * SocketTest.cs: Tests for generic Send() and Receive() methods.
  30. 2007-11-22 Gert Driesen <[email protected]>
  31. * UdpClientTest.cs: Fixed line endings.
  32. 2007-11-02 Zoltan Varga <[email protected]>
  33. * SocketTest.cs: Disable the send/receive buffer size tests.
  34. 2007-10-30 Dick Porter <[email protected]>
  35. * UdpClientTest.cs: Test for 324033.
  36. 2007-10-21 Robert Jordan <[email protected]>
  37. * SocketTest.cs: Enable GetHashCodeTest.
  38. 2007-08-15 Gert Driesen <[email protected]>
  39. * SocketTest.cs: Improved EndConnect test. Added test for bug #82446,
  40. and marked it NotWorking for 2.0 profile.
  41. 2007-05-14 Dick Porter <[email protected]>
  42. * SocketTest.cs: Tests for bug 75705
  43. 2007-04-21 Gert Driesen <[email protected]>
  44. * TcpClientTest.cs: Enabled test for bug #81105.
  45. 2007-04-20 Gert Driesen <[email protected]>
  46. * TcpClientTest.cs: ... and disable it again, since it fails buildbot
  47. sles-9 x86-64.
  48. 2007-04-20 Gert Driesen <[email protected]>
  49. * TcpClientTest.cs: Re-enabled test for bug #81105 since it passes
  50. on both linux and windows. I'll monitor the build bots to spot if it
  51. breaks the tests.
  52. 2007-03-11 Gert Driesen <[email protected]>
  53. * TcpClientTest.cs: Added test for bug #81105.
  54. 2007-03-07 Vladimir Krasnov <[email protected]>
  55. * SocketTest.jvm.cs: removed not supported calls for TARGET_JVM because
  56. of validation failures
  57. 2007-02-08 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  58. * SocketTest.jvm.cs: added 'Ignore' attributes for non working tests.
  59. 2007-01-30 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  60. * SocketTest.jvm.cs: added - forked out from SocketTest.cs due to
  61. a lot 'TARGET_JVM' specific changes.
  62. 2007-01-26 Dick Porter <[email protected]>
  63. * SocketTest.cs: New test for SO_ERROR reading, returning the same
  64. value over and over.
  65. 2007-01-25 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  66. * UdbClientTest.cs: Added Ignore attribute for entire test fixture
  67. under TARGET_JVM directive.
  68. 2007-01-24 Dick Porter <[email protected]>
  69. * NetworkStreamTest.cs: Test 2.0 ReadTimeout property
  70. 2007-01-23 Dick Porter <[email protected]>
  71. * TcpListenerTest.cs: Test 2.0 Start(int) overload
  72. * TcpClientTest.cs: Test 2.0 Connect(IPAddress[], port) overload
  73. 2007-01-11 Dick Porter <[email protected]>
  74. * SocketTest.cs:
  75. * UdpClientTest.cs: Test 2.0 additions
  76. 2006-11-24 Dick Porter <[email protected]>
  77. * SocketTest.cs: Add a test for async non blocking connects that
  78. should fail, leaving Socket.Connected == false. Based on test
  79. case in bug 79878.
  80. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  81. * SocketTest.cs: added a bunch of tests expecting
  82. ObjectDisposedException to be thrown.
  83. 2005-06-20 Gonzalo Paniagua Javier <[email protected]>
  84. * SocketTest.cs: added new test for Select.
  85. 2005-06-04 Gert Driesen <[email protected]>
  86. * SocketTest.cs: added test for bug #75158 (incompatible address).
  87. 2005-06-04 Gert Driesen <[email protected]>
  88. * SocketTest.cs: use IPAddress.Loopback in IPEndPoint to allow
  89. AcceptBlockingStatus test to pass on both Mono and MS.NET.
  90. 2005-06-04 Gert Driesen <[email protected]>
  91. * SocketTest.cs: added test for bug #75154.
  92. 2005-06-04 Gert Driesen <[email protected]>
  93. * TcpListenerTest.cs: remove NotDotNet category from TcpListener
  94. test as its working just fine on both MS.NET 1.x and 2.0.
  95. 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
  96. * TcpListenerTest.cs: actually connect the socket to the listener. Fixes
  97. the test.
  98. 2005-05-20 Sebastien Pouliot <[email protected]>
  99. * NetworkStreamCas.cs: New. CAS unit tests for NetworkStream.
  100. * SocketCas.cs: New. CAS unit tests for Socket.
  101. * SocketTest.cs: Make some fields public so they can be reused.
  102. * TcpClientCas.cs: New. CAS unit tests for TcpClient (currently
  103. commented as the Begin* methods aren't yet implemented).
  104. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  105. * SocketTest.cs: added test for setting a boolean socket option.
  106. 2005-03-06 Nick Drochak <[email protected]>
  107. * TcpClientTest.cs: Choose a different port so test will pass on MS.NET
  108. * TcpListenerTest.cs: Ignore test that doesn't play well on MS.NET
  109. 2005-02-23 Dick Porter <[email protected]>
  110. * UdpClientTest.cs: Added, with UdpClientBroadcastTest from Chris
  111. Bacon <[email protected]>
  112. 2005-02-01 Zoltan Varga <[email protected]>
  113. * SocketTest.cs: Mark some tests with [Category ("InetAccess")].
  114. 2005-01-08 Nick Drochak <[email protected]>
  115. * SocketTest.cs: Ignore test on MS.NET
  116. 2004-10-14 Dick Porter <[email protected]>
  117. * SocketTest.cs: Test the blocking status of accepted sockets
  118. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  119. * SocketTest.cs: added test for Select with empty lists. Changed the
  120. 'bogus' address of EndConnect test.
  121. 2003-12-30 Gonzalo Paniagua Javier <[email protected]>
  122. * SocketTest.cs: new test for asynchronous connection failure.
  123. Test by Brad FitzpatrickBrad Fitzpatrick <[email protected]>.
  124. 2003-08-24 Gonzalo Paniagua Javier <[email protected]>
  125. * TcpListenerTest.cs: added more tests.
  126. 2003-07-16 Peter Williams <[email protected]>
  127. * TcpListenerTest.cs: Initialize outSock to null to
  128. prevent an mcs compile error.
  129. 2003-07-14 Jerome Laban <[email protected]>
  130. * TcpListenerTest.cs: Forced IPv4 listener test.
  131. 2002-11-03 Phillip Pearson <[email protected]>
  132. * AllTests.cs: Fixed Lawrence's e-mail address.
  133. 2002-05-17 Lawrence Pit <[email protected]>
  134. * AllTests.cs: added