Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Reflection.Emit « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 244eb36992ca207222f34c872168fc2e811dc591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
2006-02-27  Gert Driesen  <drieseng@users.sourceforge.net>

	* ConstructorBuilderTest.cs: Expect ArgumentOutOfRangeException
	instead of ArgumentException when passing Request action to
	AddDeclarativeSecurity (bug #77640).
	* MethodBuilderTest.cs: Same.
	* TypeBuilderTest.cs: Same.

2005-12-15  Raja R Harinath  <rharinath@novell.com>

	* TypeBuilderTest.cs (GenericType): Add a minimal testcase for
	generic type builders.

2005-12-12  Raja R Harinath  <rharinath@novell.com>

	* AssemblyBuilderTest.cs (TestIsDefined): Make failure messages	unique.

2005-12-10  Zoltan Varga  <vargaz@gmail.com>

	* MethodBuilderTest.cs: Add test for handling not accessible custom
	attributes.

2005-10-27  Zoltan Varga  <vargaz@gmail.com>

	* FieldBuilderTest.cs MethodBuilderTest.cs ConstructorBuilderTest.cs:
	Add tests for #76521.

2005-07-29  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs: Add test for #75650.

2005-07-21  Jb Evain  <jbevain@gmail.com>

	* ILGeneratorTest.cs: Add tests for exception filters (bug #75010).

2005-06-22  Gert Driesen  <drieseng@users.sourceforge.net>

	* MethodBuilderTest.cs: Updated existing tests to no longer define
	zero-length method body. Added tests for bug #75236.

2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>

	* AssemblyBuilderTest.cs: Split AssemblyName_PublicKey to move culture
	tests to a new method (as their problem is different from #75246).

2005-06-13  Gert Driesen  <drieseng@users.sourceforge.net>

	* AssemblyBuilderTest.cs: Setting KeyPair of AssemblyName has 
	currently no effect on PublicKey(Token) and FullName of AssemblyName
	of the AssemblyBuilder. Test for bug #75246.

2005-06-13  Gert Driesen  <drieseng@users.sourceforge.net>

	* AssemblyBuilderTest.cs: Removed inheritance from deprecated
	Assertion class. Use Assert class instead.

2005-06-12  Gert Driesen  <drieseng@users.sourceforge.net>

	* AssemblyBuilderTest.cs: Added AssemblyName tests that currently
	fail on Mono.

2005-06-12  Gert Driesen  <drieseng@users.sourceforge.net>

	* FieldBuilderTest.cs: Enabled tests for FieldHandle again after 
	fixing regression.
	* ConstructorBuilderTest.cs: MethodHandle should not throw
	NotSupportedException.
	* MethodBuilderTest.cs: Enabled test for MethodHandle again after
	fixing regression, and added additional test.

2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Add tests for setting DllImportAttribute.

2005-05-12  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Add tests for bug #74906.

2005-04-30  Ben Maurer  <bmaurer@ximian.com>

	* TypeBuilderTest.cs: Don't write to a specific path in /tmp --
	breaks multiple users.

2005-04-28  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs: Add test for GetModules ().

2005-04-16  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Add test for parameter attributes.

2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>

	* MethodRentalCas.cs: New. CAS unit tests for MethodRental.

2005-03-23  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Fix this up after the last change.

2005-03-23  Martin Baulig  <martin@ximian.com>

	* TypeBuilderTest.cs (TestIsAssignableTo_NotDotNet): Put this
	whole method into the "NotWorking" category.

2005-03-23  Martin Baulig  <martin@ximian.com>

	* TypeBuilderTest.cs: Disable last test again since the bug report
	is reopened.

2005-03-21  Nick Drochak <ndrochak@ieee.org>

	* TypeBuilderTest.cs: Move asserts which fail on .NET to a new
	test method and disable it on .NET.

2005-03-09  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Reenable last test.

2005-03-09  Marek Safar  <marek.safar@seznam.cz>

	* ILGeneratorTest.cs: New test file.

2005-03-09  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Disable last test since the fix is reverted.

2005-03-08  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Add new test.

2005-02-11  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Add tests for IsAssignableFrom.

2004-01-31  Nick Drochak <ndrochak@ieee.org>

	* TypeBuilderTest.cs: Put "NotWorking" on failing tests for mono.

2004-01-30  Nick Drochak <ndrochak@ieee.org>

	* ModuleBuilderTest.cs: Avoid path length exceptions on Windows.

2004-11-22  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs: Add regression test for bug #69780.

2004-11-06  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Ignore some tests which depend on TypeBuilder
	features which are unlikely to change due to mcs depending on them.

2004-11-05  Zoltan Varga  <vargaz@freemail.hu>

	* EnumBuilderTest.cs: Remove test that depends on the exact format
	of AssemblyName.FullName.

2004-11-04  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Add a TypeResolve test. Remove a test which
	depends on exception ordering.

2004-10-05  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Add tests for default values for parameters.

2004-10-02  Gert Driesen  <drieseng@users.sourceforge.net>

	* TypeBuilderTest.cs: Added test to ensure NotSupportedException is
	thrown when creating a type with a default ctor while parent does
	not have a default ctor.

2004-09-09  Zoltan Varga  <vargaz@freemail.hu>

	* ModuleBuilderTest.cs: Add test for lookup of global methods.

2004-08-29  Nick Drochak <ndrochak@ieee.org>

	* TypeBuilderTestTest.cs: Call EnumBuilder.CreateType()	before you call
	TypeBuilder.CreateType().

2004-08-08  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Add regression test for #62237.

2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>

	* EnumBuilderTest.cs: Fixed typos so the test is reported in 
	alphabetical order by NUnit.

2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>

	* TypeBuilderTest.cs: Added tests for completed/created type

	* FieldBuilderTest.cs: Added tests for FieldBuilder (mostly
	checking error conditions for now)

	* EnumBuilderTest.cs: Added tests for EnumBuilder

	* MethodBuilderTest.cs: Added tests for invalid parameter 
	indexes for created types, added test for GetHashCode

2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>

	* MethodRentalTest.cs: Added check for invalid method size,
	fixed tests on MS.NET, Mono-stylized

2004-04-28  Zoltan Varga  <vargaz@freemail.hu>

	* MethodRentalTest.cs: New file.

2004-03-24  Sebastien Pouliot  <sebastien@ximian.com>

	* AssemblyBuilderTest.cs: Added new tests to build strongnamed 
	assemblies.

2004-03-22  Zoltan Varga  <vargaz@freemail.hu>

	* CustomAttributeBuilderTest.cs: Call GetCustomAttributes with false
	so custom attributes on Object do not screw the results.

2004-03-15  Nick Drochak <ndrochak@ieee.org>

	* CustomAttributeBuilderTest.cs: Force test to pass if we are running
	on version 1.1 of the CLR.  That version does not throw the exception.

2004-03-09  Jackson Harper  <jackson@ximian.com>

	* AssemblyBuilderAccessTest.cs:
	* CustomAttributeBuilderTest.cs: New test cases
	from nvineeth_mono@yahoo.com.

2004-02-16  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Fix test so it runs under MS.

	* TypeBuilderTest.cs: Add some tests.

2004-02-11  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Add tests for parameter info.

2004-01-27  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs (TestCustomAttributes): Remove 
	KeyFileAttribute from the test, since it must point to a valid keyfile.

2004-01-09  Nick Drochak <ndrochak@ieee.org>

	* TypeBuilderTest.cs (TestEnums): Fix build with csc.

2004-01-07  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs (IsDefined): Comment out this test, since 
	IsDefined works under mono.

	* TypeBuilderTest.cs (TestEnums): New test for using runtime generated
	enums.

2003-12-17  Nick Drochak <ndrochak@gol.com>

	* ModuleBuilderTest.cs: Shorten the path, there's a 260-or-so character
	limit for the path name.

2003-12-15  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs ConstructorBuilderTest.cs: Add tests for
	AddDeclarativeSecurity.

2003-11-17  Zoltan Varga  <vargaz@freemail.hu>

	* ConstructorBuilderTest.cs (TestAttributes): Make this test more
	general so it runs on mono too.

2003-07-11  Zoltan Varga  <vargaz@freemail.hu>

	* ModuleBuilderTest.cs: Added tests for IsTransient ().

	* ModuleBuilderTest.cs: Added tests for DefineDocument ().

	* AssemblyBuilderTest.cs: Added error handling tests.

2003-06-30  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs (TestReturnType): Make test more general so
	it works both on Mono and MS.NET.

2003-06-15  Zoltan Varga  <vargaz@freemail.hu>

	* EventBuilderTest.cs: New file.

	* PropertyBuilderTest.cs: New file.

2003-05-28  Nick Drochak <ndrochak@gol.com>

	* MethodBuilderTest: correct order of expected and actual values.

2003-05-21  Zoltan Varga  <vargaz@freemail.hu>

	* ModuleBuilderTest.cs: New file.

2003-05-20  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: More tests.

2003-05-19  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs: More tests.

2003-05-12  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Comment out test which fails because of a mono
	extension to DefineParameter.

2003-02-13  Zoltan Varga  <vargaz@freemail.hu>

	* AssemblyBuilderTest.cs: New file.

2003-02-12  Zoltan Varga  <vargaz@freemail.hu>

	* MethodBuilderTest.cs: Added test for setting MethodImplAttributes
	using a custom attribute.

2003-02-10  Zoltan Varga  <vargaz@freemail.hu>

	* ConstructorBuilderTest.cs: added SetCustomAttribute() tests.

	* MethodBuilderTest.cs: updated to NUNIT2 conventions.

	* ConstructorBuilderTest.cs: New file.

2003-02-09  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: Added lots of new tests.

2003-02-08  Zoltan Varga  <vargaz@freemail.hu>

	* TypeBuilderTest.cs: New file.

	* MethodBuilderTest.cs ChangeLog: New files.