merge 99630:99762
[mono.git] / mono / tests / verifier / ChangeLog
1 2008-04-02 Rodrigo Kumpera <rkumpera@novell.com>
2
3         * make_prefix_test.sh: New test generator for
4         instruction prefix.
5
6         * make_testS: Added tests using the new generator.
7
8 2008-04-02 Rodrigo Kumpera <rkumpera@novell.com>
9
10         * make_type_constraint_test.sh: New test generator for
11         constraints on generic type arguments.
12
13         * make_testS: Added tests using the new generator.
14
15 2008-03-31 Rodrigo Kumpera <rkumpera@novell.com>
16
17         * AssemblyRunner.cs: Mark TypeLoadException as invalid code.
18
19 2008-03-25 Rodrigo Kumpera <rkumpera@novell.com>
20
21         * valid_branch_to_first_prefix.il: Test branching to the first prefix
22         of an instruction.
23
24 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
25
26         * make_cmmp_test.sh: Test generator for readonly pointers.
27
28         * make_test.sh: New tests using the added generator.
29
30 2008-03-17 Rodrigo Kumpera <rkumpera@novell.com>
31
32         * make_constrained_test.sh: Test generator for constrained calls.
33
34         * make_test.sh: New tests using the added generator.
35
36 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
37
38         * valid_generic_test.cs: Tests for generic classes.
39
40         * unverifiable_generic_type_field_access.il: Tests for
41         not mixing generic arguments.
42
43         * valid_generic_test.cs: Add tests for generic
44         class and method together.
45
46 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
47
48         * strict_native_int_converts_to_unamanged_pointer.cs: Allow
49         conversion from native int to unmanaged pointer in non-strict mode.
50         This is required to allow the C# expression "(IntPtr)null" to be
51         verifiable.
52
53 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
54
55         * valid_ldftn_final_virtual_method.il:
56         * valid_ldftn_sealed_type_virtual_method.il: Tests the interaction
57         of sealed type and final method or ldftn verifiability.
58
59 2008-03-11 Rodrigo Kumpera <rkumpera@novell.com>
60
61         * make_delegate_compat_test.sh: Added. Generate tests for
62         compatibility between delegate signature and function
63         signature.
64
65         * make_tests.sh: Added tests using make_delegate_compat_test.sh.
66
67 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
68
69         * make_invalid_ret_type.sh: Added. Generate return site tests
70         for invalid return types.
71
72         * make_tests.sh: Add tests using make_invalid_ret_type.sh. 
73
74 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
75
76         * unverifiable_callvirt_static_method.il: Added. Test for callvirt and
77         static methods.
78
79 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
80
81         * invalid_refanytype_null_stack_top.il: New test for refanytype opcode.
82
83         * invalid_refanytype_invalid_stack_top.il: Same.
84
85         * valid_refanytype.il: Same.
86
87 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
88
89         * make_mkrefany.il: New test generator for mkrefany opcode.
90
91         * make_tests.sh: Added tests for mkrefany.
92
93 2008-02-27 Rodrigo Kumpera <rkumpera@novell.com>
94
95         * valid_vararg.il: New test for calling vararg methods.
96
97 2008-02-27 Rodrigo Kumpera <rkumpera@novell.com>
98
99         * valid_refanyval.il: New test for the refanyval opcode.
100
101         * invalid_refanyval_null_stack_top.il: Same.
102
103         * invalid_refanyval_invalid_stack_top.il: Same.
104
105 2008-02-27 Rodrigo Kumpera <rkumpera@novell.com>
106
107         * valid_arglist.il: New test for the arglist opcode.
108
109         * invalid_arglist_method_not_vararg.il: Same.
110
111 2008-02-18 Rodrigo Kumpera <rkumpera@novell.com>
112
113         * unverifiable_locals_without_initlocals.il: Methods with locals
114         that are not .init are allways unverifiable.
115
116 2008-02-08 Rodrigo Kumpera <rkumpera@novell.com>
117
118         * unverifiable_void_ptr_store_2.cs: Tests for using unmanaged pointers.
119         This test looks for void pointers.
120
121         * unverifiable_void_ptr_store_3.cs: Same.
122
123         * unverifiable_void_ptr_store.cs: Same.
124
125         * valid_merge_boxed_type_3.cs: Test merging a reference type diferent than
126         System.Object and a boxed valuetype. This is hopefully the last issue of
127         merging stack frames.
128
129         * Makefile: compile .cs files with /unsafe switch.
130
131 2008-02-06 Rodrigo Kumpera <rkumpera@novell.com>
132
133         * valid_boxed_enum_is_compatible_with_system_enum.cs: Added. 
134         Test if an enum is compatible with System.Enum.
135
136         * valid_merge_boxed_type.cs: Added. Test merging
137         a boxed int32 with a reference type.
138
139         * valid_merge_boxed_type_2.cs: Same.
140
141         * make_ldelem_test.sh: Added some enums to be used by the tests.
142
143         * make_tests.sh: New tests for ldelem compatibility between enums
144         and their base type. Marked some tests as strict.
145
146 2008-02-06 Rodrigo Kumpera <rkumpera@novell.com>
147
148         * valid_merge_base_type.cs
149         * valid_merge_first_value_is_base_type.cs:
150         * valid_merge_interface_type_3.cs: 
151         * valid_merge_interface_type_4.cs:
152         * valid_merge_interface_type.cs:
153         * valid_merge_second_value_is_base_type.cs: New tests for stack merging.
154         These tests verify the correctness of the merged value.
155
156 2008-01-30 Rodrigo Kumpera <rkumpera@novell.com>
157
158         * make_tests.sh: More tests for brtrue/brfalse with boxed values
159         and null literals.
160
161         * make_bool_branch_test.sh: New optional arg to allow for new tests.
162
163 2008-01-30 Rodrigo Kumpera <rkumpera@novell.com>
164
165         * make_tests.sh: Removed some invalid tests for nesting access
166         as they where trying to call non final virtual methods without using
167         the 'this' pointer.
168
169 2008-01-23 Rodrigo Kumpera <rkumpera@novell.com>
170
171         * make_call_test.sh: test generator for call and callvirt.
172
173         * make_tests.sh: added tests for call and callvirt.
174
175 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
176
177         * invalid_ldstr_bad_token.il: added. check the index
178         against the the #US heap.
179
180 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
181
182         * unverifiable_newobj_no_visibility.il: added. visibility
183         check for newobj.
184
185 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
186
187         * unverifiable_ldftn_no_visibility.il: added. visibility
188         check for ldftn.
189
190         * unverifiable_ldvirtftn_no_visibility.il: added. visibility
191         check for ldvirtftn.
192
193 2008-01-18 Rodrigo Kumpera <rkumpera@novell.com>
194
195         * make_tests.sh: added tests for ovf math with floats.
196
197 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
198
199         * make_localloc_test.sh: test generator for localloc.
200
201         * make_tests.sh: added tests for localloc.
202
203 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
204
205         * make_sizeof_test.sh: test generator for sizeof.
206
207         * make_tests.sh: added tests for sizeof.
208
209 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
210
211         * make_cp_test.sh: test generator for cpobj.
212
213         * make_tests.sh: added tests for cpobj.
214
215 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
216
217         * invalid_initobj_invalid_token_out_of_bounds.il: tests for initobj.
218
219         * invalid_initobj_invalid_token_type.il: same.
220
221         * make_initobj_test.sh: test generator for initobj.
222
223         * make_tests.sh: added tests for initobj.
224
225 2008-01-11 Rodrigo Kumpera <rkumpera@novell.com>
226
227         * unverifiable_ldfld_reference_type_by_ref.il: new test for ldfld.
228
229         * invalid_stojb_bad_token.il: test for bad ldobj token.
230
231         * invalid_stojb_token_out_of_bounds.il: same.
232
233         * make_stobj_test.sh: new test generator.
234
235         * make_test.sh: added new tests for stobj.
236         
237 2008-01-10 Rodrigo Kumpera <rkumpera@novell.com>
238
239         * valid_ldftn_method_spec_token.il: new test
240         for loading function pointers for generic methods.
241
242 2008-01-09 Rodrigo Kumpera <rkumpera@novell.com>
243
244         * make_test.sh: added tests for unbox.any.
245
246         * make_unbox_any_test.sh: new test generator.
247
248 2008-01-09 Rodrigo Kumpera <rkumpera@novell.com>
249
250         * make_test.sh: added tests for add|sub|mul ovf;
251
252         * unverifiable_unbox_toke_is_reference_type.il: New test for regressions
253         found while validating vbnc.
254
255         * valid_stind_ref_with_boxed_value.il: same.
256         *  valid_ldelema_enum_array.il: same.
257
258 2008-01-09 Rodrigo Kumpera <rkumpera@novell.com>
259
260         * valid_isinst_with_boxed_valuetype.il: New test for regressions
261         found while validating vbnc.
262
263         * valid_ldfld_valuetype_by_ref.il: same.
264         * valid_ldfld_valuetype_by_value.il: same.
265         * valid_stelem_ref_boxed_value.il: same.
266         * valid_stloc_boxed_valuetype.il: same.
267         * valid_sub_class_of_generic_type_is_compatible.il: same.
268         * unverifiable_ldfld_valuetype_boxed.il:  same.
269         * unverifiable_ldfld_reference_type_by_ref.il: same.
270
271         * make_test.sh: new tests for stfld and cgt.un.
272         
273
274 2008-01-08 Rodrigo Kumpera <rkumpera@novell.com>
275
276         * make_delegate_test.sh: increased max stack for
277         ldvirtftn tests.
278
279         * make_tests.sh: added new tests for delegates
280         constructed with ldvirtftn.
281
282 2008-01-07 Rodrigo Kumpera <rkumpera@novell.com>
283
284         * make_delegate_test.sh: added.
285
286         * make_tests.sh: added new tests for delegates
287         constructed with ldftn.
288
289 2008-01-03 Rodrigo Kumpera <rkumpera@novell.com>
290
291         * invalid_ldvirtftn_invalid_token_type.il: added.
292         
293         * make_ldvirtftn_test.sh: added.
294
295         * invalid_ldvirtftn_invalid_token_out_of_bounds.il: added.
296
297         * make_ldftn_test.sh: changed to allow more tests.
298
299         * make_tests.sh: added new tests for ldvirtftn and
300         a buch more for ldftn.
301
302 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
303
304         * invalid_ldftn_invalid_token_out_of_bounds.il: added.
305         
306         * invalid_ldftn_invalid_token_type.il: added.
307
308         * make_ldftn_test.sh: added.
309
310         * make_test.sh: new tests for ldftn.
311
312         * AssemblyRunner.cs: added BadImageFormatException
313         to the list of invalid code errors. Removed
314         some dead code and an useless message.
315
316
317 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
318
319         * invalid_non_empty_stack_at_try_begin.il: added.
320
321         * valid_branch_to_first_intruction_of_try.il: added.
322
323
324 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
325
326         * make_exception_overlap_test.sh: new test generator.
327
328         * make_tests.sh: new tests for exception clause restrictions
329         enumerated in P1 12.4.2.7.
330
331         * invalid_catch_block_starts_after_prefix.il: new test
332         for a catch block that starts in the middle of an instruction.
333
334 2007-12-24 Rodrigo Kumpera <rkumpera@novell.com>
335
336         * make_switch_test.sh: new test generator.
337
338         * make_exception_branch_test.sh: the filter
339         handler did not pop the exception argument.
340
341         * make_tests.sh: add tests for switch.
342
343 2007-12-21 Rodrigo Kumpera <rkumpera@novell.com>
344
345         * make_branch_test.sh: new test generator.
346
347         * make_exception_branch_test.sh: added
348         support to test generator to specify
349         the expected result.
350
351         * make_tests.sh: some results for
352         make_exception_branch_test.sh were
353         wrong, fixed that.
354
355         * make_tests.sh: added some tests
356         to beq and bge.
357
358         * make_tests.sh added tests for br.
359
360 2007-12-20 Rodrigo Kumpera <rkumpera@novell.com>
361
362         * valid_exception_sequence.il: new test
363         for what blocks take an exception on
364         stack at the begin.
365
366 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
367
368         * invalid_empty_catch_block.il
369         * invalid_empty_fault_block.il
370         * invalid_empty_filter_block.il
371         * invalid_empty_finally_block.il
372         * invalid_empty_handler_block.il
373         * invalid_empty_try_block.il
374         tests for empty protected blocks.
375
376         * invalid_exception_blocks_order.il:
377         test for the required ordering of exception
378         clauses.
379
380         * invalid_finally_block_overlap_try_block.il
381         * invalid_try_block_includes_catch_block.il
382         * invalid_try_block_inside_filter_block.il
383         tests for ill formed exception clauses.
384                 
385         * invalid_fallout_of_filter_block.il
386         * invalid_fallout_of_handler_block.il
387         * invalid_fallthru_into_filter_block.il
388         * invalid_fallthru_into_handler_block.il
389         * unverifiable_fallout_of_catch_block.il
390         * unverifiable_fallout_of_fault_block.il
391         * unverifiable_fallout_of_finally_block.il
392         * unverifiable_fallout_of_try_block.il
393         * unverifiable_fallthru_into_catch_block.il
394         * unverifiable_fallthru_into_fault_block.il
395         * unverifiable_fallthru_into_finally_block.il
396         * valid_end_try_block_with_throw.il:
397         tests for fallthru in and out of protected blocks.
398
399 2007-12-18 Rodrigo Kumpera <rkumpera@novell.com>
400
401         * make_test.sh: added tests for filter
402
403         * make_filter_test.sh: new test generator
404
405 2007-12-14 Rodrigo Kumpera <rkumpera@novell.com>
406
407         * make_test.sh: added tests for endfilter
408
409         * make_endfilter_test.sh: new test generator
410
411 2007-12-14 Rodrigo Kumpera <rkumpera@novell.com>
412
413         * Makefile: add support to check strict tests.
414
415         * AssemblyRunner.cs: start using peverify as part of the
416         process. Support for strict tests.
417
418 2007-12-12 Rodrigo Kumpera <rkumpera@novell.com>
419
420         * invalid_filter_ends_at_endfilter_1.il: tests if the
421         filter block is limited by the start of the associated 
422         handler clause or it is limited by the ocurrence of
423         endfilter. These 3 tests show that even if the endfilter
424         instruction must be the last, it doesn't define the end
425         of the filter block.
426
427         * invalid_filter_ends_at_endfilter_2.il: same
428
429         * invalid_filter_ends_at_endfilter_3.il: same
430
431         * make_test.sh: added tests for endfinally / endfault
432         * make_endfinally_test.sh: new test generator
433
434 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
435
436         * make_test.sh: added tests for rethrow
437         * make_rethrow_test.sh: new test generator
438
439 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
440
441         * make_test.sh: added tests for throw
442         * make_throw_test.sh: new test generator
443
444 2007-12-07 Rodrigo Kumpera <rkumpera@novell.com>
445
446         * make_test.sh: added tests for castclass and isinst
447         * make_cast_test.sh: new test generator
448
449 2007-12-07 Rodrigo Kumpera <rkumpera@novell.com>
450
451         * make_test.sh: added tests for stelem.X
452         * make_stelem_test.sh: new test generator
453
454 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
455
456         * make_test.sh: added tests for ldelem
457
458 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
459
460         * make_test.sh: fixed compilation issues with some tests.
461
462 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
463
464         * make_test.sh: added tests for ldelem.X
465         * make_ldelem_test.sh: new test generator
466
467 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
468
469         * make_test.sh: added tests for ldelema
470         * make_ldelema_test.sh: new test generator
471
472 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
473
474         * make_test.sh: added tests for ldlen
475         * make_ldlen_test.sh: new test generator
476
477 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
478
479         * valid_array_method.cs: test for invoking array methods.
480
481 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
482
483         * make_tests.sh: tests for the return type of the invoked method.
484         tests for passing typedbyref as param.
485
486         * make_obj_store_test.sh: add new optional script parameter to tell
487         if class fields should be generated. This fix some bogus tests using
488         typedbyref.
489
490 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
491         * make_tests.sh: unbox_byref_like test was flawed, it was not testing
492         the proper unverifable condition.
493
494 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
495
496         * make_unary_test.sh: fixed an invalid struct that has no fields,
497         this was not the subject of the tests.
498         * make_newobj_test.sh: added, generate tests for newobj.
499         * make_tests.sh: added the new tests for newobj and some corner
500         cases of local/arg load/store.
501
502
503 2007-10-04 Rodrigo Kumpera <rkumpera@novell.com>
504
505         * make_store_indirect_test.sh: added, generate tests for stind.X.
506         * make_tests.sh: added the new tests for ldind.X.
507
508 2007-10-02 Rodrigo Kumpera <rkumpera@novell.com>
509
510         * make_tests.sh: added the new tests for ops mixing Int32 and IntPtr, disabled
511         the overlapped tests for now
512         * make_unary_test.sh: disabled the overlapped tests for now
513         * make_field_store_test.sh: sames
514
515 2007-09-27 Rodrigo Kumpera <rkumpera@novell.com>
516
517         * make_load_indirect_test.sh: added, generate tests for ldind.X.
518         * make_tests.sh: added the new tests for ldind.X and new tests for stloc/starg using 
519         native int and int32.
520
521 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
522
523         * valid_load_addr.il: Tests for valid uses of ldarga and ldloca
524         * make_double_nesting_test.sh: Generate tests for calling nested classes from a diferent outer class
525
526 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
527
528         * valid_generic_params.cs (added): Tests for valid use of generic types.
529         * Makedfile: added valid_generic_params.cs
530
531 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
532
533         * make_newarr_test.sh (added):  Generate newarr related tests.
534         * make_tests.sh: Addes tests for newarr.
535
536
537 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
538
539         * make_unbox_test.sh (added):  Generate unbox related tests.
540         * make_tests.sh: Addes tests for unbox.
541
542
543 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
544
545         * make_ldobj_test.sh (added):  Generate ldobj related tests.
546         * make_tests.sh: Addes tests for ldobj.
547
548 2007-08-13 Rodrigo Kumpera <rkumpera@novell.com>
549
550         * make_ldtoken_test.sh (added):  Generate ldtoken related tests
551         * make_tests.sh: Addes tests for ldtoken, conv.*.* and visibility checks
552         for nested classes mixed with inheritance
553
554 2007-08-10 Rodrigo Kumpera <rkumpera@novell.com>
555
556         * make_test.sh: Added new visibility tests and not/neg tests
557         * make_cross_nested_access_test.sh: new test script for visibility
558         between two classes nested in the same class
559         * unverifiable_ldsfld_no_fld.il: added main method
560         * make_unary_test.sh: added some types to make room for more tests
561         * make_exception_branch_test.sh: fix the test to trigger the right error
562
563
564 2007-08-02 Rodrigo Kumpera <rkumpera@novell.com>
565
566         * make_exception_branch_test.sh: Fix the generation of the tests, so only
567         branching problems are validated.
568
569 2007-07-20 Rodrigo Kumpera <rkumpera@novell.com>
570
571         * make_test.sh: added more visibility tests
572         * Makefile: changed again the clean target to work with the larger number of tests
573         * make_self_nested_test.sh: new visibility tests
574
575 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
576
577         * make_test.sh: added reference compatibility tests
578
579 2007-07-05 Rodrigo Kumpera <rkumpera@novell.com>
580
581         * AssemblyRunner.cs: bug fix: handles missing fields corrently
582         * make_test.sh: correct some tests based on fixed AssemblyRunner
583         
584 2007-07-05 Rodrigo Kumpera <rkumpera@novell.com>
585
586         * AssemblyRunner.cs: Allow running the test suite from the same VM instance
587         * make_tests.sh: improved the test-suite, now it works running under a VM, not just the verifier
588         * unverifiable_ldflda_other_class_on_simple_method.il: same
589         * unverifiable_ptr_nop.il: same
590         * unverifiable_ldsflda_other_class_field_on_cctor.il: same
591         * make_load_test.sh: same
592         * make_stack_0_test.sh: same
593         * make_obj_store_test.sh: same
594         * unverifiable_m_ptr_ldloc.il: same
595         * make_ret_test.sh: same
596         * make_store_test.sh: same
597         * unverifiable_ldsflda_other_class_on_simple_method.il: same
598         * make_access_test.sh: same
599         * unverifiable_ptr_ldloc.il: same
600         * invalid_call_no_method.il: same
601         * unverifiable_ldsfld_no_fld.il: same
602         * unverifiable_ldflda_owner_class_on_simple_method.il: same
603         * unverifiable_m_ptr_ldarg.il: same
604         * make_stack_merge_test.sh: same
605         * unverifiable_stack_2_ret.il: same
606         * unverifiable_ldflda_other_class_field_on_ctor.il: same
607         * unverifiable_ldflda_other_class_field_on_cctor.il: same
608         * make_field_store_test.sh: same
609         * invalid_backward_branch.il: same
610         * unverifiable_ldfld_initonly.il: same
611         * make_nested_access_test.sh: same
612         * invalid_stack_2_ret.il: same
613         * unverifiable_ldsflda_owner_class_on_simple_method.il: same
614         * unverifiable_ptr_ldarg.il: same
615         * valid_fld_initonly.il: same
616         * make_bin_test.sh: same
617         * make_field_valuetype_test.sh: new tests
618         
619
620 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
621
622         * make_tests.sh: new access verification tests
623         * make_access_test.sh: create member access test
624         * make_nested_access_tests.sh: create nested member access test
625
626 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
627
628         *make_tests.sh: fixed two tests to produce valid results with .net
629         *make_field_test.sh: make fields public
630
631 2007-06-22  Rodrigo Kumpera  <kumpera@gmail.com>
632
633         * unverifiable_ldflda_other_class_on_simple_method.il: test for load field address in .ctor
634         * unverifiable_ldsflda_other_class_on_simple_method.il: same
635         * unverifiable_ldsflda_other_class_field_on_cctor.il: same
636         * unverifiable_ldflda_other_class_field_on_cctor.il: same
637         * unverifiable_ldsflda_owner_class_on_simple_method.il: same
638         * unverifiable_ldflda_owner_class_on_simple_method.il: same
639         * valid_ldflda_owned_field_on_cctor.il: same
640         * valid_ldsflda_owned_field_on_cctor.il: same
641         * valid_local_ref_ref_store.il: valid local store that was not covered before
642         * unverifiable_ptr_nop.il:  unmanaged pointer ops
643         * unverifiable_ptr_ldloc.il: same
644         * unverifiable_ptr_ldarg.il: same
645         * unverifiable_m_ptr_ldloc.il: same
646         * unverifiable_m_ptr_ldarg.il: same
647
648 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
649
650         *make_tests.sh: new ldsfld tests, more call conv tests
651
652 2007-06-19  Rodrigo Kumpera  <kumpera@gmail.com>
653
654         *make_tests.sh: new ldfld tests (they check everything but visibility)
655         *make_field_store_test.sh: generated the new field tests
656
657 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
658
659         * invalid_dup_maxstack.il: the test wasn't generating the failing condition
660         * make_tests.sh: fixed the generation of stack merge tests and a typo on the return coercion tests
661         * unverifiable_ldfld_initonly.il: add assembly manifest (so it tests the right thing)
662         * invalid_stack_2_ret.il: fix the entry point
663
664 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
665         
666         * invalid_call_empty_stack.il: added assembly manifest (so it tests the right thing)
667         * invalid_ldsfld_nonstatic_fld.il: same
668         * invalid_dup_maxstack.il: same
669         * invalid_ldsfld_no_fld.il: same
670         * unverifiable_call_private.il: same
671         * invalid_backward_branch.il: same
672         * make_unary_test.sh: same
673         * invalid_ldloc_no_local.il: same
674         * make_obj_store_test.sh: added static field to have stsfld tests
675         * make_store_test.sh: fixed the entrypoint
676         * make_tests.sh: fixed tests to be faithfull to the spec
677
678 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
679
680         *Changelog: fixed the dates of my commits
681
682 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
683
684         *make_load_test.sh: Fixed the entrypoint to generate valid code
685         *make_ret_test.sh: Fixed the entrypoint to generate valid code. Removed invalid generics classes
686         *make_tests.sh: Fixed the testsuite to not generate wrong tests
687         *Makefile: split the clean step as it was failing due to the huge file list
688          (it might need further tweaking as the testsuite grows)
689
690 2007-06-12  Rodrigo Kumpera  <kumpera@gmail.com>
691
692         * make_tests.sh: New boolean branch tests
693         * make_bool_branch_test.sh: Test the stack value that boolean branches use (brfalse / brtrue)
694         * make_ret_test.sh: removed unused variable from sed expression
695
696 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
697
698         * Makefile (run-test): Make it use pedump instead of mono for validation
699         * make_tests.sh: New tests
700         * invalid_stack_2_tet.il: New test
701         * make_ret_test.sh: New test script
702         * make_load_test.sh: New test script
703         * make_obj_store_test.sh: Test did not generate valid code for some cases
704         * make_store_test.sh: Test did not generate valid code for some cases
705
706 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
707
708         * Makefile (run-test): Split 'test' target into a 'compile' and 'run-test' target.
709
710         * make_tests.sh: Remove some stack merge tests which are verifiable.
711
712         * make_unary_test.sh *.cil Makefile: Change extension of all static and generated
713         test files to the standard .il.
714
715 2006-05-25  Zoltan Varga  <vargaz@gmail.com>
716
717         * *.sh: Fix more verification problems.
718
719         * TestRunner.cs: Use Assembly.EntryPoint instead of searching for a Main method.
720
721 2006-05-23  Zoltan Varga  <vargaz@gmail.com>
722
723         * make_store_test.sh make_obj_store_test.sh make_stack_merge_test.sh: Fix
724         more ilasm and verification problems.
725
726         * TestRunner.cs: New file.
727
728 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
729
730         * make_store_test.sh make_obj_store_test.sh make_stack_merge_test.sh: Make
731         valuetypes sealed to fix ilasm warnings.
732
733 Sun Mar 12 16:18:04 CET 2006 Paolo Molaro <lupus@ximian.com>
734
735         * Initial import of the verifiers tests developed by
736         Jim Purbrick <babbage@lindenlab.com>.
737