2007-10-30 Robert Jordan <robertj@gmx.net>
[mono.git] / mcs / class / System.Runtime.Remoting / Test / ChangeLog
1 2007-10-30  Robert Jordan  <robertj@gmx.net>
2
3         * GenericTest.cs: Add tests for bug #324232.
4
5 2007-09-09  Robert Jordan  <robertj@gmx.net>
6
7         * GenericTest.cs: Add tests for bug #78882, #81554.
8
9 2007-06-05  Robert Jordan  <robertj@gmx.net>
10
11         * RemotingServicesTest.cs: Add test for bug #81811.
12
13 2007-05-19  Robert Jordan  <robertj@gmx.net>
14
15         * IpcChannelTest.cs: Add test for bug #81653.
16
17 2007-02-05  Robert Jordan  <robertj@gmx.net>
18
19         * BaseCalls.cs (PrimitiveParams): Add dummy overload method for
20         bug #77191.
21         * ReflectionCalls.cs (PrimitiveParams): Due to the change above
22         we need to specify the exact signature because PrimitiveParams ()
23         is overloaded now.
24
25 2007-01-09  Robert Jordan  <robertj@gmx.net>
26
27         * GenericTest.cs: Added test for generics in remoting interfaces.
28         See bug #80383.
29
30 2006-12-18  Lluis Sanchez Gual  <lluis@ximian.com>
31
32         * BaseCalls.cs: Added some tests for exceptions.
33
34 2005-12-02  Robert Jordan  <robertj@gmx.net>
35
36         * RemotingServicesTest.cs: Added test for bug #76809.
37
38 2005-12-01  Robert Jordan  <robertj@gmx.net>
39
40         * IpcCalls.cs: Made the IPC channel names unique to match the
41         Tcp/HttpChannel(0) semantics, because the test suite
42         relies on that.
43
44 2005-10-16  Robert Jordan  <robertj@gmx.net>
45
46         * IpcCalls.cs: Added.
47
48 2005-04-27  Lluis Sanchez Gual  <lluis@ximian.com>
49
50         * RemotingServicesTest.cs: Fix warning.
51         * ContextsTest.cs: Removed unneeded exception catch.
52         Changed the order in which GetEnvoySink is called. I think 
53         this is a safe chenge, since it is not defined where the
54         call to GetEnvoySink should be made.
55
56 2005-02-16  Lluis Sanchez Gual  <lluis@ximian.com>
57
58         * HttpCalls.cs, TcpCalls.cs: Don't use a hardcoded port number for the
59         test channels, take any free port.
60
61 2004-12-17  Lluis Sanchez Gual  <lluis@ximian.com>
62
63         * HttpCalls.cs: Use a different port.
64
65 2004-12-17  Lluis Sanchez Gual <lluis@ximian.com>
66
67         * BaseCalls.cs: Removed useless try/catch.
68
69 2004-09-27  Lluis Sanchez Gual <lluis@ximian.com>
70
71         * ContextsTest.cs: Fixed test sequence.
72         * RemotingServicesTest.cs: Minor fix.
73         * ServerObject.cs: Added check for transparent proxy in all CBO methods.
74
75 2004-07-02  Lluis Sanchez Gual <lluis@ximian.com>
76
77         * ActivationTests.cs: Fixed and enhanced tests.
78         * RemotingServicesTest.cs: Added.
79
80 2004-06-23  Lluis Sanchez Gual <lluis@ximian.com>
81
82         * ActivationTests.cs: New tests.
83         * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
84
85 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
86
87         * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs, 
88           ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
89
90 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
91
92         * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs, 
93           ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
94           ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
95           Shortened namespace name.
96
97 2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>
98
99         * BaseCalls.cs: Little fix.
100         * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
101         * CrossDomainCalls.cs: New test for the cross-app domain channel.
102           
103 2003-09-01  Nick Drochak  <ndrochak@gol.com>
104
105         * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
106
107 2003-08-22  Lluis Sanchez Gual <lluis@ximian.com>
108
109         * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
110           to avoid reuse of client proxies.
111         * CallSeq.cs: Now, "domain ID" is set manually.
112         * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
113         * ReflectionCalls.cs: Get the method for the invoke for the correct type.
114           GetType() for a proxy to interface always return MarshalByRefObject.
115         * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
116         * DelegateCalls.cs: New test suite for calls using delegates.
117
118 2003-08-20  Lluis Sanchez Gual <lluis@ximian.com>
119
120         * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
121           TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
122           and reflection calls using tcp and http channels.
123         * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
124           domain ids that are the same between tests runs.
125         * ContextsTest.cs: unregister channel on test shutdown.
126
127 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
128
129         * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.