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

ChangeLog « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 580786710baa02fa53aff9944fb179c6ddd6a878 (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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
2004-08-03  Ben Maurer  <bmaurer@ximian.com>
	
	* test-283.cs:  for 62275.

	* unsafe-9.cs: new test for #62263.

2004-06-24  Raja R Harinath  <rharinath@novell.com>

	* test-252.cs: Avoid reference to System.dll.
	* test-277.cs: New test for #56774.

2004-06-24  Marek Safar <marek.safar@seznam.cz>

	* test-205.cs: Removed because become invalid.

2004-06-24  Raja R Harinath  <rharinath@novell.com>

	* test-276.cs: New test for #60459.

2004-06-21  Marek Safar <marek.safar@seznam.cz>

	* test-275.cs: New test for #59792

2004-06-18  Marek Safar <marek.safar@seznam.cz>

	* test-274.cs: New test for #60219
        
2004-06-18  Marek Safar <marek.safar@seznam.cz>

	* test-273.cs: New test for #55971

2004-06-18  Raja R Harinath  <rharinath@novell.com>

	* test-272.cs: New test case for the breaking build.

2004-06-13  Martin Baulig  <martin@ximian.com>

	* gen-57.cs: New test.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* gen-56.cs: New test from #58307.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* test-269.cs: Another varargs test.

2004-06-11  Raja R Harinath  <rharinath@novell.com>

	* Makefile (TEST_SOURCES): Add test-268.
	* test-268.cs: New test for #59477.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* vararg-lib.cs, vararg-exe.cs: New tests.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* Makefile: Enable test-269.

2004-06-08  Martin Baulig  <martin@ximian.com>

	* Makefile: Enable test-157.

2004-06-08  Martin Baulig  <martin@ximian.com>

	* test-269.cs: New test for varargs methods.

2004-06-01  Marek Safar <marek.safar@seznam.cz>

	* test-267.cs: New test.

2004-05-30  Marek Safar <marek.safar@seznam.cz>

	* test-240.cs: Enable test.

2004-05-29  Martin Baulig  <martin@ximian.com>

	* test-266.cs: New test for #52578.

2004-05-29  Martin Baulig  <martin@ximian.com>

	* test-265.cs: New test for #59267.

2004-05-29  Martin Baulig  <martin@ximian.com>

	* test-264.cs: New test for #59188.

2004-05-27  Marek Safar <marek.safar@seznam.cz>

	* test-263.cs: New test.

2004-05-26  Marek Safar <marek.safar@seznam.cz>

	* test-74.cs: Now test passes on my machine too.
	It is not perfect though.
        
2004-05-25  Martin Baulig  <martin@ximian.com>

	* test-261.cs: New test for #52279.

2004-05-24  Martin Baulig  <martin@ximian.com>

	* test-260.cs: New test for #53921.

2004-05-24  Martin Baulig  <martin@ximian.com>

	* test-259.cs: New test for #55251.

2004-05-24  Martin Baulig  <martin@ximian.com>

	* test-258.cs: New test for #58584.

2004-05-23  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for #58322.

2004-05-21  Martin Baulig  <martin@ximian.com>

	* test-257.cs: New test for #28098.

2004-05-21  Marek Safar <marek.safar@seznam.cz>

	* test-256.cs: New test for #58590.

2004-05-20  Marek Safar <marek.safar@seznam.cz>

	* test-255.cs: New test.

2004-05-18  Marek Safar <marek.safar@seznam.cz>

	* test-254.cs: New test for #52585.

2004-05-14  Marek Safar <marek.safar@seznam.cz>

	* test-253.cs: New test for #54679.

2004-05-11  Raja R Harinath  <rharinath@novell.com>

	* test-252.cs: New test for #58290.

2004-04-29  Martin Baulig  <martin@ximian.com>

	* property-il.il, property-main.cs: New test for #56013.

2004-04-29  Martin Baulig  <martin@ximian.com>

	* test-248.cs: New test for #52731.

2004-04-29  Martin Baulig  <martin@ximian.com>

	* test-246.cs, test-247.cs: New tests for #52597.

2004-04-29  Martin Baulig  <martin@ximian.com>

	* dll-2.cs, prog-2.cs: New test for #56178.

2004-04-29  Martin Baulig  <martin@ximian.com>

	* test-245.cs: New test for #53255.

2004-04-28  Martin Baulig  <martin@ximian.com>

	* test-244.cs: New test for #52588.

2004-04-28  Martin Baulig  <martin@ximian.com>

	* test-243.cs: New test for #57014.

2004-04-27  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added test case for #52625.

2004-04-22  Raja R Harinath  <rharinath@novell.com>

	* Makefile (test-compiler-jit-real): Simplify sed expression.
	List compiler options in logfile.

2004-04-22  Marek Safar <marek.safar@seznam.cz>

	* Makefile: Add support for custom test compiler options.
        
	* test-242.cs: New test.

2004-04-22  Raja R Harinath  <rharinath@novell.com>

	* Makefile (test-compiler-jit-real): Create a test result log file
	for all tests.

2004-04-21  Marek Safar <marek.safar@seznam.cz>

	* test-238.cs,
	test-239.cs,
	test-239.cs: Tests for ObsoleteAttribute

2004-04-21  Raja R Harinath  <rharinath@novell.com>

	* Makefile (test-compiler-jit-real): Create log files for failed
	testcases.
	(test-generic, test-2, test-unsafe-compiler-jit): Update.

	* test-237.cs: Test for #56442.

2004-04-16  Raja R Harinath  <rharinath@novell.com>

	* test-236.cs: Test for #56300.

2004-04-10 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-12.cs: test for concat inside array.

2004-03-24  Ravi Pratap M  <ravi@ximian.com>

	* test-235.cs: test for 47234.

2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-234.cs: test for 25885.

2004-03-21  Martin Baulig  <martin@ximian.com>

	* gen-45.cs: New generics test for type inference.

2004-03-20  Martin Baulig  <martin@ximian.com>

	* gen-44.cs: New generics test for operators.

	* gen-21.cs: Use the new `default(T)' syntax.

2004-03-17  Martin Baulig  <martin@ximian.com>

	* gen-43.cs: New generics test for static fields.

2004-03-09  Joshua Tauberer <tauberer@for.net>

	* test-232.cs: Tests for { ... }-style array creation

2004-02-25  Marek Safar <marek.safar@seznam.cz>

	* Makefile: Enable test-230.

2004-02-23  Martin Baulig  <martin@ximian.com>

	* gen-40.cs: New generics test.

2004-02-20  Martin Baulig  <martin@ximian.com>

	* gen-39.cs: New generics test.

2004-02-20  Martin Baulig  <martin@ximian.com>

	* gen-test.pl: Enable gen-38.

2004-02-18  Martin Baulig  <martin@ximian.com>

	* Makefile: Disable test-157.cs, it's broken.  See #54530.

2004-02-17  Martin Baulig  <martin@ximian.com>

	* gen-38.cs: New generics test.

2004-02-17 Marek Safar <marek.safar@seznam.cz>

	* cls-test-{2,5,6}.cs: Improved tests for CLS-compliant

2004-02-16 Marek Safar <marek.safar@seznam.cz>

	* test-230.cs: test for module attributes.

2004-02-13 Ben Maurer  <bmaurer@users.sourceforge.net>

	* 2test-6.cs, test-229.cs: some tests for foreach on
	struct IEnumerators

2004-02-02  Ravi Pratap M  <ravi@ximian.com>

	* test-157.cs: Improve test for interface property accessor
	attributes.

2004-01-26  Martin Baulig  <martin@ximian.com>

	* gen-37.cs: New generics test.

2004-01-21  Martin Baulig  <martin@ximian.com>

	* test-227.cs: New test for #52517.

2004-01-20  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for bug #46640.

2004-01-20  Martin Baulig  <martin@ximian.com>

	* test-226.cs: New test for #53058.

2004-01-20  Martin Baulig  <martin@ximian.com>

	* verify-8.cs: New test for #52707.

2004-01-05 Marek Safar <marek.safar@seznam.cz>

        * cls-test-0.cs, cls-test-1.cs, cls-test-2.cs, cls-test-3.cs,
          cls-test-5.cs, cls-test-6.cs, cls-test-7.cs, cls-test-10.cs,
          cls-test-11.cs, cls-test-14.cs, cls-test-15.cs, cls-test-16.cs:
        New tests for CLS-compliance
        
2004-01-03 Todd Berman  <tberman@gentoo.org>

	* test-224.cs: new test for #52429

2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-205.cs: remove from the build. This does
	not compile under csc.

2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-223.cs: test for #52569.

2004-01-02  Ravi Pratap  <ravi@ximian.com>

	* test-222.cs: Overload resolution test for bugzilla 
	bug #52046.

2003-12-25 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-141.cs: add tests for #38674.

2003-12-23 Ben Maurer  <bmaurer@users.sourceforge.net>

	* pp.cs: Also test for 2 entry-point-looking methods
	in a library, bug #52490.

2003-12-22 Ben Maurer  <bmaurer@users.sourceforge.net>

	* test-221.cs: Add some regression tests relating to
	52408 (these dont test the actual bug, but regressions I
	created while writing the code for it).

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

	* module-1.cs module-2.cs module-3.cs: New files.

	* Makefile: Add test for /target:module and /addmodule.

2003-12-13  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for bug #48962.

2003-12-11  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcases for bugs #49153, #49359 and #49602.

2003-11-21  Miguel de Icaza  <miguel@ximian.com>

	* test-150.cs: Improved test.

2003-10-17  Martin Baulig  <martin@ximian.com>

	* gen-test.sh: Removed.

	* gen-test.pl: New file; this is a perl script which runs all the
	generics tests.

2003-10-15  Miguel de Icaza  <miguel@ximian.com>

	* test-49.cs: Improved test with input from bug #48761

2003-10-10  Martin Baulig  <martin@ximian.com>

	* gen-15.cs: New test for generic methods.

2003-09-29  Martin Baulig  <martin@ximian.com>

	* gen-14.cs: New generics test.

2003-09-27  Martin Baulig  <martin@ximian.com>

	* gen-11.cs, gen-12.cs: New generics tests.

	* gen-13-dll.cs, gen-13.exe.cs: New generics test; this test
	consists of two files and tests whether this works if it's in two
	files and not just in one.

2003-09-19  Martin Baulig  <martin@ximian.com>

	* gen-10.cs: New generics test.

2003-09-18  Martin Baulig  <martin@ximian.com>

	* gen-9.cs: New generics test.

2003-09-16  Martin Baulig  <martin@ximian.com>

	* gen-3.cs, gen-4.cs, gen-5.cs, gen-6.cs, gen-7.cs, gen-8.cs: New
	generics tests.

2003-09-02  Ravi Pratap  <ravi@ximian.com>

	* test-102.cs: Improve test.

2003-08-26  Martin Baulig  <martin@ximian.com>

	* test-215.cs: New test for bug #47927.

2003-08-26  Martin Baulig  <martin@ximian.com>

	* verify-7.cs: New test for bug #47681.

2003-08-26  Martin Baulig  <martin@ximian.com>

	* test-214.cs: New test for bug #47853.

2003-08-25  Martin Baulig  <martin@ximian.com>

	* test-213.cs: New test for bug #47822.

2003-08-22  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for bug #46949.

2003-08-22  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for bug #47095.

2003-08-04  Martin Baulig  <martin@ximian.com>

	* Makefile: Put back test-211.cs.

2003-07-29  Ravi Pratap  <ravi@ximian.com>

	* conv-lib.cs: New Multi stage compilation test for bug #47043.

	* conv-main.cs: Main for the above.

	* Makefile: Update.

2003-07-28  Ravi Pratap  <ravi@ximian.com>

	* test-189.cs: Reuse vacant slot. Test for bugs #43367 and
	#46199.

	* test-212.cs: New test for bug #44468.

2003-07-28  Martin Baulig  <martin@ximian.com>

	* test-210.cs: New test for bug #46923.

2003-07-26  Martin Baulig  <martin@ximian.com>

	* test-209.cs: New test for implict conversions and embedded assignments.

2003-07-25  Martin Baulig  <martin@ximian.com>

	* test-208.cs: New test for bug #46788.

2003-07-22  Martin Baulig  <martin@ximian.com>

	* test-207.cs: New test for expressions which return delegates.

2003-07-21  Martin Baulig  <martin@ximian.com>

	* test-206.cs: New test for bug #46502.

2003-07-20  Martin Baulig  <martin@ximian.com>

	* test-205.cs: New test for some namespace stuff.

2003-07-16  Ravi Pratap  <ravi@ximian.com>

	* test-39.cs: Improve test to check emission on interfaces too.

2003-07-14  Ravi Pratap M  <ravi@ximian.com>

	* Makefile: Make sure that we use the newly generated compiler
	to run the tests, not the installed one.

	Modify targets to compile and run in one go instead of separate
	targets for each task.

	* test-196.cs: Fix careless error - returning a value from a void
	Main ().

	Add it back to the test suite.

2003-07-14  Martin Baulig  <martin@ximian.com>

	* test-204.cs: User defined conditional logical operators; bug #40505.

2003-07-14  Martin Baulig  <martin@ximian.com>

	* test-203.cs: Added test for bug #33026.

2003-07-13  Ravi Pratap M  <ravi@ximian.com>

	* test-178.cs: Use this as it is a free slot. Test 
	for bug #45876.

	* makefile: Update.

	* README.tests: Update

2003-07-13  Martin Baulig  <martin@ximian.com>

	* test-202.cs: Added test for bug #41975.

2003-07-13  Martin Baulig  <martin@ximian.com>

	* test-201.cs: Added test for bug #35631.

2003-07-12  Martin Baulig  <martin@ximian.com>

	* test-200.cs: Added test for bug #45854.

2003-07-08  Martin Baulig  <martin@ximian.com>

	* test-198.cs, test-199.cs: New tests for bugs #36316, #36314 and
	#36313.

2003-07-05  Martin Baulig  <martin@ximian.com>

	* test-197.cs: New test for bug #42973.

2003-06-29  Miguel de Icaza  <miguel@ximian.com>

	* makefile (TEST_SOURCES): Add the tests that require an assembly,
	so we dont get another regression here (#37521).

2003-05-27  Ravi Pratap  <ravi@ximian.com>

	* test-45.cs : Enable code which tests IntPtr array
	initialization. This automatically serves as a test case for bug
	#36030.

	Improve test.

2003-05-17  Ravi Pratap  <ravi@ximian.com>

	* test-194.cs: New test for bug #39108

	* README.tests : Update accordingly.

	* makefile : Add new test.

2003-05-19  Martin Baulig  <martin@ximian.com>

	* test-162.cs: Added testcases for structs containing other
	structs as fields.  Bug #42597.

2003-05-18  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added testcase for bug #41657.

2003-05-18  Martin Baulig  <martin@ximian.com>

	* test-154.cs: Added the contents of test-189.cs as a new testcase
	to this test.

	* test-189.cs: Removed, let's keep the flow analysis tests in one
	single test file.

2003-05-11  Martin Baulig  <martin@ximian.com>

	* test-193.cs: New test for bug #39828.

2003-04-10  Miguel de Icaza  <miguel@ximian.com>

	* test-43.cs: Improve test.

2003-04-06  Martin Baulig  <martin@ximian.com>

	* test-190.cs: New test.

2003-04-05  Martin Baulig  <martin@ximian.com>

	* test-189.cs: New test for bug #40670.

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

	* README.tests test-188.cs makefile: Added test-188.cs.

2003-02-25  Miguel de Icaza  <miguel@ximian.com>

	* makefile (all): Make it so that doing `make' will run the
	default tests depending on Windows/Linux.

2003-02-23  Martin Baulig  <martin@ximian.com>

	When adding any tests here, please do also add them to the
	README.tests !

	The following tests are still missing:

	test-176 test-177 test-179 test-180 test-181 test-182 test-183
	test-184

2003-02-23  Martin Baulig  <martin@ximian.com>

	* test-185.cs: New test for bug #37708.

2003-02-15  Miguel de Icaza  <miguel@ximian.com>

	* test-128.cs: Improved testl, reflects bug #37363 problems

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

	* makefile (TEST_SOURCES): Added test-181.

2002-12-21  Ravi Pratap  <ravi@ximian.com>

	* test-171.cs : Fix up since it wasn't working because of some
	array code bug. That is a separate problem ;-)

2002-12-21  Ravi Pratap  <ravi@ximain.com>

	* test-171.cs : This was mysteriously absent. Add new test in its
	place.

2002-12-18  Ravi Pratap  <ravi@ximian.com>

	* test-177.cs : Add. This doesn't pass yet because we don't have
	ReturnTypeCustomAttributes working.

2002-12-10  Ravi Pratap  <ravi@ximian.com>

	* test-102.cs : Improve to catch the case when an attribute
	can be emitted twice for the same program element but with
	different targets.

2002-11-24  Martin Baulig  <martin@ximian.com>

	* test-130.cs: This test did not compile with csc and
	mcs now reports the error as well.  Removed the offending
	line from the test.

2002-11-24  Martin Baulig  <martin@ximian.com>

	* verify-6.cs: New test for bug #32269.

2002-11-24  Martin Baulig  <martin@ximian.com>

	* test-175.cs: New test for bug #30443.

2002-11-17  Martin Baulig  <martin@ximian.com>

	* README.tests: Whoever added test-167 to test-172
	while I was away, you forgot to add them here.

2002-11-17  Martin Baulig  <martin@ximian.com>

	* test-173.cs: New test for bug #34165.

2002-11-14  Martin Baulig  <martin@gnome.org>

	* test-148.cs: Added some tests from bug #33089.

2002-10-10  Martin Baulig  <martin@gnome.org>

	* verify-1.cs: Added testcase from bug #31470.

2002-10-10  Martin Baulig  <martin@gnome.org>

	* verify-5.cs: Added testcase from bug #31541.

2002-10-06  Martin Baulig  <martin@gnome.org>

	* test-164.cs: Added a few more testcases here.

2002-10-04  Martin Baulig  <martin@gnome.org>

	* test-154.cs: Added testcase from bug #31546.

2002-09-19  Martin Baulig  <martin@gnome.org>

	* test-154.cs: Added testcase from bug #30487.

2002-09-17  Martin Baulig  <martin@gnome.org>

	* test-148.cs: Added testcase for base indexers.

2002-09-14  Martin Baulig  <martin@gnome.org>

	* test-166.cs: New test.

2002-09-14  Martin Baulig  <martin@gnome.org>

	* verify-4.cs: Added testcase from bug #29857.

2002-09-12  Martin Baulig  <martin@gnome.org>

	* test-40.cs: Removed the syntax errors from this test.

2002-09-09  Martin Baulig  <martin@gnome.org>

	* makefile: Reverted Ravi's `Update'.  When moving tests from
	TESTS_NOPASS to TEST_SOURCES, please make sure that they actually
	pass on both platforms and don't do it without a ChangeLog entry.

2002-09-09  Martin Baulig  <martin@gnome.org>

	* test-165.cs: Added testcase for bug #30040.

2002-09-09  Martin Baulig  <martin@gnome.org>

	* test-164.cs: Added testcase for virtual functions in delegate
	creating expressions (Bug #30043).

2002-09-06  Ravi Pratap  <ravi@ximian.com>

	* test-163.cs : Add test to check we select string
	over object when we have a Null literal as the argument.

	* makefile : Update.

2002-08-11  Martin Baulig  <martin@gnome.org>

	* test-162.cs: New test.

2002-08-08  Martin Baulig  <martin@gnome.org>

	* test-154.cs (test16): Added test for bug #28717.

2002-08-08  Martin Baulig  <martin@gnome.org>

	* test-161.cs: New test.

2002-08-07  Martin Baulig  <martin@gnome.org>

	* test-160.cs: New test for bug #28176.

2002-08-07  Martin Baulig  <martin@gnome.org>

	* test-158.cs: New test for bug #22119.

2002-08-05  Martin Baulig  <martin@gnome.org>

	* test-157.cs: Formerly known as ../errors/cs-20.cs

2002-08-05  Martin Baulig  <martin@gnome.org>

	* error-1.cs, error-2.cs: Moved to ../errors.

2002-08-03  Martin Baulig  <martin@gnome.org>

	* test-156.cs, error-2.cs: New tests.

2002-08-02  Martin Baulig  <martin@gnome.org>

	* makefile: Moved test-66.cs to TEST_NOPASS since there's currently
	a bug in the runtime which makes this crash.

	* test-155.cs: New test.

2002-08-01  Martin Baulig  <martin@gnome.org>

	* verify-3.cs: New test.

2002-07-31  Martin Baulig  <martin@gnome.org>

	* test-154.cs: New test for the flow analysis code.

	* error-1.cs: Each method in this test must produce a compiler
	error message.

	* makefile (test-unsafe-mono): New target to compile and run all
	the --unsafe tests wich MCS and the Mono runtime.

2002-07-29  Martin Baulig  <martin@gnome.org>

	* makefile: Put back test-152.cs.

	* test-143.cs: Fixed a compilation error in this test.

2002-07-27  Martin Baulig  <martin@gnome.org>

	* test-153.cs: New test.

2002-07-27  Martin Baulig  <martin@gnome.org>

	* test-113.cs: Made this test actually work.

2002-07-26  Martin Baulig  <martin@gnome.org>

	* test-152.cs: New test for bug #24007.

	* makefile: Disabled test-151.cs since it isn't fixed yet.

2002-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* test-151.cs: New test. See bug #22119.
	* makefile: added new test.

2002-07-24  Martin Baulig  <martin@gnome.org>

	* test-150.cs: New test.

	* test-149.cs: New test.

	* test-95.cs: .... and finally, another bug in MCS is fixed and
	the syntax error in this test is caught.

2002-07-23  Martin Baulig  <martin@gnome.org>

	* test-148.cs: New test.

2002-07-22  Martin Baulig  <martin@gnome.org>

	* verify-2.cs: New test.

2002-07-22  Martin Baulig  <martin@gnome.org>

	* verify-1.cs: New test.  The verify-XXX.cs tests must be
	compiled and then verified - either with `pedump --verify code'
	or with PEverify.

2002-07-22  Martin Baulig  <martin@gnome.org>

	* makefile: test-29 now passes.

2002-07-22  Martin Baulig  <martin@gnome.org>

	* test.147.cs: New test for the `new' modifier.

2002-07-21  Martin Baulig  <martin@gnome.org>

	* test-38.cs: Added a few more test cases to this test.

2002-07-20  Martin Baulig  <martin@gnome.org>

	* test-38.cs: This test now passes with MCS.  Added a few more
	test cases to it.

	* test-52.cs: The order of the elements returned by
	`IDictionary.Keys' is unspecified.

	* makefile: The following tests fail under linux and have been
	moved to TEST_NOPASS: 45, 53, 91, 106, 107, 122, 132, 133.
	(test-compiler-mono): Compile all the TEST_NOPASS tests, but
	don't run them.

2002-07-20  Martin Baulig  <martin@gnome.org>

	* README.tests: Added (empty) list of all the test cases.
	When you add any test cases, please add them to this file.

	* test-146.cs: Added test for bug #27977 which is now fixed.

2002-07-19  Martin Baulig  <martin@gnome.org>

	* test-145.cs: Added test for bug #25318 which is now fixed.

2002-07-17  Martin Baulig  <martin@gnome.org>

	* test-144.cs: Added test for constant `unchecked' and `checked'
	expressions in a constant assignment.

2002-07-10  Ravi Pratap  <ravi@ximian.com>

	* test-142.cs : Add. This ensures events can be accessed
	correctly from subclasses etc.
	
2002-07-06  Andrew Birkett  <adb@tardis.ed.ac.uk>

	* test-74.cs: Added test for \n in verbatim string.

2002-06-27  Martin Baulig  <martin@gnome.org>

	* makefile (test-compiler-mono): New target to compile and run
	the tests with mcs and the mono jit.

2002-06-25  Andrew Birkett  <adb@tardis.ed.ac.uk>

	* makefile: The following tests fail under linux and have been 
	moved to TEST_NOPASS: 40, 45, 52, 53, 91, 106, 107, 122, 132, 133

	Windows-specific tests have been extracted, and are now run by the
	test-windows rule (it'll be run under linux but fail)

	The output format has been made less noisy, and is basically the
	same as the tests in mcs/errors - like "Running test-1 ... OK".

2002-06-13  Ravi Pratap  <ravi@ximian.com>

	* test-131.cs : Add to test enum member attribute application.

2002-06-10  Rachel Hestilow  <hestilow@ximian.com>

	* unsafe-3.cs: New test for address-of-pointer.
	
2002-06-09  Martin Baulig  <martin@gnome.org>

	* test-130.cs: New test for constants and casts.

2002-06-09  Martin Baulig  <martin@gnome.org>

	* test-129.cs: New test for unary minus.

2002-06-08  Ravi Pratap  <ravi@ximian.com>

	* test-128.cs : Add. This ensures we apply attributes to accessors
	of events and properties.

2002-06-08  Martin Baulig  <martin@gnome.org>

	* test-127.cs: New test for Enum.IsDefined().

2002-05-24  Ravi Pratap  <ravi@ximian.com>

	* test-124.cs, test-125.cs : Add.

	* makefile : update.

2002-05-11  Miguel de Icaza  <miguel@ximian.com>

	* test-49.cs: Improve test.

Wed May 8 16:48:11 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* test-118.cs: test alternate type lookup for attributes.

2002-05-07  Ravi Pratap  <ravi@ximian.com>

	* test-117.cs : Add.

2002-05-05  Miguel de Icaza  <miguel@ximian.com>

	* test-28.cs: Improved test: before we were failing on abstract
	indexers invoked in the same class (as the accessor would have no
	body).

2002-05-02  Ravi Pratap  <ravi@ximian.com>

	* test-113.cs : Another test for overload resolution ;-)

	* test-114.cs : Add.

2002-04-28  Miguel de Icaza  <miguel@ximian.com>

	* test-108.cs: Improve test

2002-04-26  Ravi Pratap  <ravi@ximian.com>

	* test-105.cs, test-106.cs, test-107.cs : Add.

2002-04-22  Ravi Pratap  <ravi@ximian.com>

	* test-104.cs : Another overload resolution test !

2002-04-05  Ravi Pratap  <ravi@ximian.com>

	* test-101.cs : Add test from Paolo.

	* test-102.cs : Another test for attribute emission.

2002-04-05  Ravi Pratap  <ravi@ximian.com>

	* test-90.cs : Fix bug where we had no class !

	* test-96.cs : Here too !

	* test-98.cs : Supply a missing Main.

2002-03-27  Miguel de Icaza  <miguel@ximian.com>

	* test-18.cs: Augment test with the multi-flow try/catch.

2002-03-21  Miguel de Icaza  <miguel@ximian.com>

	* test-49.cs: Improved test to excerise the coverage.

2002-03-13  Ravi Pratap  <ravi@ximian.com>

	* test-86.cs : Add. This is to check for correct overload resolution
	with a null literal.

2002-03-07  Ravi Pratap  <ravi@ximian.com>

	* test-82.cs : Add.

2002-03-07  Miguel de Icaza  <miguel@ximian.com>

	* test-52.cs: Expanded test to cover more cases of foreach.

2002-03-05  Ravi Pratap  <ravi@ximian.com>

	* test-81.cs : Add. 

	* makefile : Update accordingly as this test passes.

2002-02-20  Miguel de Icaza  <miguel@ximian.com>

	* unsafe-1.cs: Extend test.

2002-01-18  Miguel de Icaza  <miguel@ximian.com>

	* test-7.cs: Fix test (i.i wsa invalid)

2002-01-18  Nick Drochak  <ndrochak@gol.com>

	* makefile: remove path to beta2 csc.exe.  path to csc.exe must be in PATH instead.

2002-01-13  Ravi Pratap  <ravi@ximian.com>

	* test-58.cs : Since it was a duplicate, replace with unsafe
	code testing.

2002-01-08  Miguel de Icaza  <miguel@ximian.com>

	* test-34.cs: Improve this test to check ref/ref cases.

2002-01-02  Ravi Pratap  <ravi@ximian.com>

	* test-45.cs : Augment to exercise support for array initialization
	for various other types.

2001-12-30  Miguel de Icaza  <miguel@ximian.com>

	* test-67.cs: Improve this test.

2001-12-29  Ravi Pratap  <ravi@ximian.com>

	* test-69.cs : Add. This tests support for methods which are
	internal calls.

2001-12-28  Ravi Pratap  <ravi@ximian.com>

	* test-34.cs : Update to exercise the new overload resolution
	code.

2001-12-26  Ravi Pratap  <ravi@ximian.com>

	* test-67.cs : Add. These are tests for explicit layout
	of structs and classes.

	* makefile : Update accordingly.
	
2001-12-25  Ravi Pratap  <ravi@ximian.com>

	* test-57.cs : Update to exercise more of the code base for
	events.

2001-12-24  Ravi Pratap  <ravi@ximian.com>

	* test-19.cs : Augment to exercise tests on delegates
	defined in mscorlib.

	* test-57.cs : Update to exercise the -= operator
	as well.
	
2001-12-23  Ravi Pratap  <ravi@ximian.com>

	* test-57.cs : Update.

	* makefile : Update to include the above as it passes nicely.

2001-12-21  Ravi Pratap  <ravi@ximian.com>

	* test-19.cs : Augment to exercise code which fixed the bug
	where we were not generating a This for the delegate's 
	instance expression - for the non-static methods ie.

2001-12-15  Miguel de Icaza  <miguel@ximian.com>

	* test-45.cs: Make test also use variables as arguments to new;
	We used to have a bug in the compiler that did not resolve some of
	the arguments.

2001-12-15  Ravi Pratap  <ravi@ximian.com>

	* makefile : Include test-52.cs in the suite, it works fine!

	(NO_PASS): It's test-51 which doesn't seem to pass.

	* test-50.cs : Augment some more to set named arguments on
	the DllImport attribute.

	* test-57.cs : Add. This tests support for Events and does not
	pass yet.

2001-12-14  Ravi Pratap  <ravi@ximian.com>

	* test-45.cs : Update for float and double initialization.

2001-12-13  Miguel de Icaza  <miguel@ximian.com>

	* makefile (test-30): Another test moved to the `pass' section.
	This is explicit interface implementation.

	(test-54): returning from catch exceptions has been working for
	some time now. 

2001-12-09  Radek Doulik  <rodo@ximian.com>

	* makefile (TEST_SOURCES): added test-55 for using alias directive

2001-12-06  Dietmar Maurer  <dietmar@ximian.com>

	* makefile: added new target test-jit

2001-12-04  Ravi Pratap <ravi@ximian.com>

	* makefile : Update to include test 50 as it now passes.

2001-12-04  Ravi Pratap <ravi@ximian.com>

	* test-45.cs : Update for string initialization tests.

2001-12-03  Miguel de Icaza  <miguel@ximian.com>

	* test-49.cs: Updated to test `goto default'

	* test-43.cs: Test break and continue here.

	* gen-cast-test.cs: Improved cast test generator.

2001-12-03  Ravi Pratap <ravi@ximian.com>

	* test-50.cs : Add. This does not pass yet.

2001-12-02  Ravi Pratap  <ravi@ximian.com>

	* test-40.cs : Update to now test recursive definitions with
	constants hooked up.

2001-12-01  Ravi Pratap  <ravi@ximian.com>

	* test-40.cs : Update to do recursive enumeration definition.

2001-11-28  Ravi Pratap  <ravi@ximian.com>

	* test-48.cs : Add for constant emission tests.

	* makefile : Update for the above as it passes nicely :-)

2001-11-22  Ravi Pratap  <ravi@ximian.com>

	* test-45.cs : Augment some more to test shorthand declaration
	of variables/fields that are array types.

2001-11-20  Ravi Pratap  <ravi@ximian.com>

	* test-45.cs : Add for array initialization testing.

2001-11-16  Miguel de Icaza  <miguel@ximian.com>

	* test-34.cs: Improve this test to check if we are actually
	walking over the arguments in foreach.

2001-11-15  Ravi Pratap  <ravi@ximian.com>

	* makefile : Update to include test-33 again. All tests
	pass again !

2001-11-13  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Re-write to make the tests more robust.

2001-11-12  Ravi Pratap  <ravi@ximian.com>

	* test-39.cs : Update to test named arguments too.

2001-11-11  Ravi Pratap  <ravi@ximian.com>

	* test-40.cs : Update to be a little more useful.

2001-11-08  Ravi Pratap  <ravi@ximian.com>

	* test-39.cs : Add

	* test-40.cs : Add

	* makefile : Modify to include the above as they pass all tests.
	
2001-10-31  Ravi Pratap  <ravi@ximian.com>

	* test-34.cs : Add 
	
2001-10-28  Ravi Pratap  <ravi@ximian.com>

	* test-32.cs : Added to test array definition and creation.

	* makefile : Updated accordingly.

2001-10-22  Ravi Pratap  <ravi@ximian.com>

	* makefile : New target 'verify' which uses the verifier to check
	that executables produced by us are identical to the MSC produced ones.

	* test-7.cs : Update to exercise more overloadable operators.

2001-10-21  Ravi Pratap  <ravi@ximian.com>

	* test-27.cs : Add to do various implicit and explicit
	reference conversions.

	* makefile : Update accordingly.

2001-10-18  Ravi Pratap  <ravi@ximian.com>

	* test-26.cs : Update to test delegate creation from another 
	delegate.
	
2001-10-17  Ravi Pratap  <ravi@ximian.com>

	* test-26.cs : Added to demonstrate delegate support.

2001-10-16  Miguel de Icaza  <miguel@ximian.com>

	* test-25.cs: Added new test to excercise break/continue on
	various loop constructs.

	* test-24.cs: Test property use in expression and statement
	contexts. 

2001-10-14  Miguel de Icaza  <miguel@ximian.com>

	* test-23.cs: Added new test for properties. 

2001-10-12  Ravi Pratap  <ravi@ximian.com>

	* test-21.cs : Update to actually do some checking and return
	an appropriate value.

2001-10-11  Ravi Pratap  <ravi@ximian.com>

	* test-21.cs : Add. This is a test for testing our support
	for nested types
	
2001-10-05  Ravi Pratap  <ravi@ximian.com>

	* test-16.cs : Update to exercise the code which selects the best 
	conversion operator based on "most encompassing/encompassed type"

	* test-7.cs : Update here too.

2001-10-05  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Update to do explicit conversion tests.

	* makefile : small fix.

2001-10-03  Ravi Pratap  <ravi@ximian.com>

	* test-16.cs : Update to make the test more correct.

2001-10-03  Ravi Pratap  <ravi@ximian.com>

	* test-16.cs : Add.

	* makefile : update accordingly.

2001-10-02  Miguel de Icaza  <miguel@ximian.com>

	* makefile (test-compiler): Add rm *.exe before launching tests.

2001-10-02  Ravi Pratap  <ravi@ximian.com>

	* test-13.cs : Added. 

	* makefile : update accordingly.

2001-09-27  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Revamp and add more operator tests. Still in progress.

	* test-9,10.cs : Added by Miguel earlier.

2001-09-26  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Update to return an exit code

	* test-8.cs : Added by Miguel.

2001-09-25  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Update to include implicit conversion tests.

2001-09-21  Ravi Pratap  <ravi@ximian.com>

	* test-7.cs : Add.

2001-09-21  Miguel de Icaza  <miguel@ximian.com>

	* makefile (test-compiler): Abort tests on failure.