summaryrefslogtreecommitdiffstats
path: root/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml
blob: ad3fb70e8e5e1e945bb76bf411a0312fc8efd76b (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
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[
]>

<!-- AspectJ v1.5.0 Tests -->

<suite>

    <ajc-test dir="java5/staticImports" title="import static java.lang.System.out">
        <compile files="StaticImport.aj" options="-1.5"/>
    </ajc-test>

    <ajc-test dir="java5/bridgeMethods" pr="72766" title="Ignore bridge methods">
        <compile files="AspectX.aj" inpath="testcode.jar" options="-showWeaveInfo">
          <message kind="warning" line="7" text="pointcut did not match on the method call to a bridge method."/>
          <message kind="weave" text="(AspectX.aj:18) advised by before advice from 'AspectX'"/>
          <message kind="weave" text="(Number.java:5) advised by before advice from 'AspectX'"/>
        </compile>
    </ajc-test>

    <ajc-test dir="migration" title="load aspectj 1.2.1 aspects in aspectj 5">
        <compile files="Program.java" aspectpath="aspects121.jar">
        </compile>
        <run class="Program"/>
    </ajc-test>

	<ajc-test dir="bugs/java5/arrayCloning" pr="72150" vm="1.5"
	   title="AJC possible bug with static nested classes">
	   <compile files="A.java,C.java" options="-1.5,-showWeaveInfo">
	       <message kind="weave" text="Type 'C' (C.java:14) advised by around advice from 'A' (A.java:2)"/>
	   </compile>
	   <run class="C"/>
    </ajc-test>

	<ajc-test dir="java5/pseudoKeywords" 
	   title="method called around in class">
	   <compile files="MethodCalledAround.java">
	   </compile>
    </ajc-test>

	<ajc-test dir="java5/pseudoKeywords" 
	   title="method called around in aspect">
	   <compile files="MethodCalledAroundAspect.java">
	       <message kind="error" line="2"/>
	   </compile>
    </ajc-test>
    
    <ajc-test dir="bugs150/pr87376" title="structure model npe on type not found">
        <compile files="I.java,NPE.aj" options="-emacssym">
            <message kind="error" line="8" text="I cannot be resolved to a type"/>
            <message kind="error" line="10" text="I cannot be resolved to a type"/>
        </compile>
    </ajc-test>
    
   <ajc-test dir="bugs150" pr="83311" title="overriding/polymorphism error on interface method introduction">
     <compile files="pr83311.aj"/>
   </ajc-test>
   
   <ajc-test dir="bugs150" pr="103266" title="NPE on syntax error">
     <compile files="pr103266.aj">
          <message kind="error" line="41" text="ConnectionRequestContext cannot be resolved to a type"/>
     </compile>
   </ajc-test>
    
    <ajc-test dir="bugs150/pr84260" vm="1.5" title="static import failures">
        <compile files="A.java,I1.java,I2.java" options="-1.5"/>
        <run class="I1">
          <stderr>
            <line text="static method running"/>
          </stderr>
        </run>
        <run class="I2">
          <stderr>
            <line text="static method running"/>
          </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="decp" pr="80249" title="Order of types passed to compiler determines weaving behavior">
        <compile files="A.java,B.java,AspectX.java"/>
        <run class="B"/>
        <compile files="B.java,A.java,AspectX.java"/>
        <run class="B"/>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="99228" vm="1.5" title="ITD of a field into a generic class">
        <compile files="PR99228.aj" options="-1.5"/>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="98320" vm="1.5" title="intertype with nested generic type">
        <compile files="PR98320.aj" options="-1.5"/>
    </ajc-test>
    
    <ajc-test dir="decs" pr="42743" title="declare soft of runtime exception">
        <compile files="DeclareSoftRuntimeException.aj">
            <message kind="warning" line="3" text="MyRuntimeException will not be softened as it is already a RuntimeException"/>
        </compile>
        <run class="DeclareSoftRuntimeException">
            <stdout>
                <line text="MyRuntimeException"/>
                <line text="org.aspectj.lang.SoftException"/>
                <line text="MyRuntimeException"/>
            </stdout>
        </run>
    </ajc-test>

    <ajc-test dir="decs" pr="42743" title="declare soft w. catch block">
        <compile files="VerifyError.aj">
        </compile>
        <run class="VerifyError"/>
    </ajc-test>
        
    <ajc-test dir="bugs" pr="61568" title="Various kinds of ambiguous bindings">
        <compile files="AmbiguousBindings.aj">
            <message line="17" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
            <message line="19" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
            <message line="21" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
            <message line="23" text="ambiguous binding of parameter(s) x across '||' in pointcut"></message>
            <message line="25" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
        </compile>
    </ajc-test>
    
    <ajc-test dir="bugs" pr="61658" title="ambiguous args">
        <compile files="PR61658.java">
            <message line="17" text="ambiguous binding of parameter(s) a, b across '||' in pointcut"></message>
        </compile>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="78021" title="Injecting exception into while loop with break statement causes catch block to be ignored">
        <compile files="PR78021.java"/>
        <run class="PR78021"/>
    </ajc-test>
    
    <ajc-test dir="bugs150/pr99089" vm="1.5" pr="99089" title="ArrayIndexOutOfBoundsException - Generics in privileged aspects">
        <compile files="DataClass.java,TracingAspect.java" options="-1.5"/>
        <run class="DataClass">
          <stderr>
          <line text="before:Length of v=1"/>
          <line text="after:Length of v=2"/>
          </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="79554" title="Return in try-block disables catch-block if final-block is present">
        <compile files="PR79554.java"/>
        <run class="PR79554"/>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="82570" title="Weaved code does not include debug lines">
        <compile files="PR82570_1.java"/>
    </ajc-test>
    
    <ajc-test dir="bugs150" pr="83303" title="compiler error when mixing inheritance, overriding and polymorphism">
        <compile files="PR83303.java"/>
    </ajc-test>

    <ajc-test dir="bugs150" pr="83563" title="pertypewithin() handing of inner classes (1)">
        <compile files="PR83563_1.java"/>
        <run class="PR83563_1"/>
    </ajc-test>

    <ajc-test dir="bugs150" pr="83563" title="pertypewithin() handing of inner classes (2)">
        <compile files="PR83563_2.java"/>
        <run class="PR83563_2"/>
    </ajc-test>

    <ajc-test dir="bugs150" pr="83645" title="pertypewithin({interface}) illegal field modifier">
        <compile files="PR83645.java"/>
        <run class="PR83645"/>
    </ajc-test>
    
    <ajc-test dir="bugs150" title="bad asm for enums" vm="1.5">
        <compile files="Rainbow.java" options="-emacssym,-1.5"/>
    </ajc-test>
        
    <ajc-test dir="../docs/dist/doc/examples/introduction" title="introduction sample" vm="1.5">
        <compile files="CloneablePoint.java,ComparablePoint.java,HashablePoint.java,Point.java" options="-1.5"/>
    </ajc-test>

    <ajc-test dir="java5/varargs" title="varargs in constructor sig" vm="1.5">
        <compile files="Pr88652.aj" options="-1.5">
            <message kind="warning" line="8" text="should match"/>
            <message kind="warning" line="9" text="should match"/>        
        </compile>
    </ajc-test>

    <ajc-test dir="java5/varargs" title="star varargs pattern" vm="1.5">
        <compile files="StarVarargsPattern.aj" options="-1.5">
            <message kind="warning" line="5" text="you used a varargs signature"/>
            <message kind="warning" line="7" text="you used a varargs signature"/>        
        </compile>
    </ajc-test>
    
    <ajc-test dir="java5/annotations" title="invalid cons syntax" vm="1.5">
        <compile files="SyntaxError.aj" options="-1.5">
            <message kind="error" line="3" text="Syntax error on token &quot;new&quot;, &quot;method name (not constructor)&quot; expected"/>
        </compile>
    </ajc-test>
        
    <!-- Annotation binding tests -->
    
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 1">
        <compile files="CallAnnBinding.aj" options="-1.5"/>
        <run class="CallAnnBinding"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 2">
        <compile files="CallAnnBinding2.aj" options="-1.5"/>
        <run class="CallAnnBinding2"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 3">
        <compile files="CallAnnBinding3.aj" options="-1.5"/>
        <run class="CallAnnBinding3"/>    
    </ajc-test>
 
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 4">
        <compile files="CallAnnBinding4.aj" options="-1.5"/>
        <run class="CallAnnBinding4"/>    
    </ajc-test>

   <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 5">
        <compile files="CallAnnBinding5.aj" options="-1.5"/>
        <run class="CallAnnBinding5"/>    
    </ajc-test>
    
           <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 6">
        <compile files="CallAnnBinding6.aj" options="-1.5"/>
        <run class="CallAnnBinding6"/>    
    </ajc-test>
    
   <ajc-test dir="java5/annotations/binding" vm="1.5" title="call annotation binding 7">
        <compile files="CallAnnBinding7.aj" options="-1.5"/>
        <run class="CallAnnBinding7"/>    
    </ajc-test>
        
     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@target annotation binding 1">
        <compile files="AtTarget1.aj" options="-1.5"/>
        <run class="AtTarget1"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@target annotation binding 2">
        <compile files="AtTarget2.aj" options="-1.5"/>
        <run class="AtTarget2"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@target annotation binding 3">
        <compile files="AtTarget3.aj" options="-1.5"/>
        <run class="AtTarget3"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@target annotation binding 4">
        <compile files="AtTarget4.aj" options="-1.5"/>
        <run class="AtTarget4"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding/usingPackageNames" vm="1.5" title="@target annotation binding 5">
        <compile files="MyAspect.aj,MyAnnotation.java,MyClass.java" options="-1.5"/>
        <run class="test.MyClass"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@this annotation binding 1">
        <compile files="AtThis1.aj" options="-1.5"/>
        <run class="AtThis1"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@this annotation binding 2">
        <compile files="AtThis2.aj" options="-1.5"/>
        <run class="AtThis2"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@this annotation binding 3">
        <compile files="AtThis3.aj" options="-1.5"/>
        <run class="AtThis3"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@this annotation binding 4">
        <compile files="AtThis4.aj" options="-1.5"/>
        <run class="AtThis4"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@this annotation binding 5">
        <compile files="AtThis5.aj" options="-1.5"/>
        <run class="AtThis5"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@args annotation binding 1">
        <compile files="AtArgs1.aj" options="-1.5"/>
        <run class="AtArgs1"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@args annotation binding 2">
        <compile files="AtArgs2.aj" options="-1.5"/>
        <run class="AtArgs2"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@args annotation binding 3">
        <compile files="AtArgs3.aj" options="-1.5"/>
        <run class="AtArgs3"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@args annotation binding 4">
        <compile files="AtArgs4.aj" options="-1.5"/>
        <run class="AtArgs4"/>    
    </ajc-test>

     <ajc-test dir="java5/annotations/binding" vm="1.5" title="@args annotation binding 5">
        <compile files="AtArgs5.aj" options="-1.5"/>
        <run class="AtArgs5"/>    
    </ajc-test>
    
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="execution and @annotation">
        <compile files="ExecutionAnnBinding1.aj" options="-1.5"/>
        <run class="ExecutionAnnBinding1"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="set and @annotation">
        <compile files="FieldAnnBinding1.aj" options="-1.5"/>
        <run class="FieldAnnBinding1"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="get and @annotation">
        <compile files="FieldAnnBinding2.aj" options="-1.5"/>
        <run class="FieldAnnBinding2"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="get and @annotation with arrays">
        <compile files="FieldAnnBinding3.aj" options="-1.5"/>
        <run class="FieldAnnBinding3"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="cons call and @annotation">
        <compile files="CtorAnnBinding1.aj" options="-1.5"/>
        <run class="CtorAnnBinding1"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="cons exe and @annotation">
        <compile files="CtorAnnBinding2.aj" options="-1.5"/>
        <run class="CtorAnnBinding2"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="staticinit and @annotation">
        <compile files="StaticInitBinding.aj" options="-1.5"/>
        <run class="StaticInitBinding"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="preinit and @annotation">
        <compile files="PreInitBinding.aj" options="-1.5"/>
        <run class="PreInitBinding"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="init and @annotation">
        <compile files="InitBinding.aj" options="-1.5"/>
        <run class="InitBinding"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="adviceexecution and @annotation">
        <compile files="AdviceExecBinding.aj" options="-1.5"/>
        <run class="AdviceExecBinding"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding" vm="1.5" title="handler and @annotation">
        <compile files="HandlerBinding.aj" options="-1.5"/>
        <run class="HandlerBinding"/>    
    </ajc-test>
        
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="@withincode() and call(* println(..))">
       <compile files="WithinCodeBinding1.aj" options="-1.5"/>
       <run class="WithinCodeBinding1"/>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="@within">
       <compile files="WithinBinding1.aj" options="-1.5"/>
       <run class="WithinBinding1"/>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="@within - multiple types">
       <compile files="WithinBinding2.aj" options="-1.5"/>
       <run class="WithinBinding2"/>
    </ajc-test>
 
    <ajc-test dir="java5/annotations/binding/complexExample" vm="1.5" title="packages and no binding">
        <compile files="A.java,B.java,Color.java,X.java" options="-1.5"/>
        <run class="a.b.c.A"/>    
    </ajc-test>

    <ajc-test dir="java5/annotations/binding/complexExample" vm="1.5" title="packages and binding">
        <compile files="A.java,B.java,Color.java,X2.java" options="-1.5"/>
        <run class="a.b.c.A"/>    
    </ajc-test>
    
    <ajc-test dir="java5/annotations/binding" vm="1.5" title="binding with static methods">
        <compile files="StaticMethods.java" options="-1.5"/>
        <run class="StaticMethods"/>    
    </ajc-test>
    
    <ajc-test dir="java5/annotations" vm="1.5" title="annotation matching on call">
        <weave classesFiles="AnnotatedType.java,SimpleAnnotation.java,SimpleAnnotation2.java"
               aspectsFiles="AnnotationAspect02.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AnnotatedType' (AnnotatedType.java:3) advised by before advice from 'AnnotationAspect02' (AnnotationAspect02.aj:4)"/>
               <message kind="weave" text="Type 'AnnotatedType' (AnnotatedType.java:3) advised by before advice from 'AnnotationAspect02' (AnnotationAspect02.aj:2)"/>
               <message kind="weave" text="Type 'AnnotatedType' (AnnotatedType.java:4) advised by before advice from 'AnnotationAspect02' (AnnotationAspect02.aj:4)"/>
        </weave>
    </ajc-test>
    
    <ajc-test dir="java5/annotations" vm="1.5" title="at annotation matching">
        <weave classesFiles="AnnotatedType.java,SimpleAnnotation.java,SimpleAnnotation2.java"
               aspectsFiles="AnnotationAspect03.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="warning" line="8" text="@annotation matched here"/>
        </weave>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/within_code" vm="1.5" title="annotations and within(code)">
        <weave classesFiles="TestingAnnotations.java"
               aspectsFiles="WithinAndWithinCodeTests.java"
               options="-1.5,-showWeaveInfo">
               <message kind="warning" line="31" text="@within match on non-inherited annotation"/>
               <message kind="warning" line="39" text="@within match on non-inherited annotation"/>
               <message kind="warning" line="39" text="@within match on inheritable annotation"/>
               <message kind="warning" line="43" text="@within match on inheritable annotation"/>
               <message kind="warning" line="32" text="@withincode match"/>
        </weave>
    </ajc-test>    
    
    <ajc-test dir="java5/annotations/within" vm="1.5" title="annotations and within">
        <weave classesFiles="PlainWithin.java"
               aspectsFiles="PlainWithinTests.java"
               options="-1.5,-showWeaveInfo">
               <message kind="warning" line="21" text="positive within match on annotation"/>
               <message kind="warning" line="25" text="negative within match on annotation"/>
        </weave>
    </ajc-test>   
    
    <ajc-test dir="java5/annotations/thisOrtarget" vm="1.5" title="must have runtime retention">
        <compile options="-1.5" files="NotRuntimeRetention.aj">
         <message kind="error" line="20" text="Annotation type MySourceAnnotation does not have runtime retention"/>
            <message kind="error" line="21" text="Annotation type MyClassAnnotation does not have runtime retention"/>
            <message kind="error" line="22" text="Annotation type MyAnnotation does not have runtime retention"/>
        </compile>
    </ajc-test>
     
    <ajc-test dir="java5/annotations/thisOrtarget" vm="1.5" title="inheritable or not">
        <compile options="-1.5" files="TestingAnnotations.java,ThisOrTargetTests.aj">
        </compile>
        <run class="TestingAnnotations"/>
    </ajc-test> 

    <ajc-test dir="java5/annotations/thisOrtarget" vm="1.5" title="use of @this/target in deow">
        <compile options="-1.5" files="TestingAnnotations.java,DeclareEoW.java">
               <message kind="error" line="3" text="this() pointcut designator cannot be used in declare statement"/>
               <message kind="error" line="5" text="target() pointcut designator cannot be used in declare statement"/>
        </compile>
    </ajc-test> 

    <ajc-test dir="java5/annotations/args" vm="1.5" title="@args tests">
        <compile options="-1.5" files="TestingArgsAnnotations.java,AtArgsAspect.java">
        </compile>
        <run class="TestingArgsAnnotations"/>
    </ajc-test> 
    
    <ajc-test dir="java5/annotations/args" vm="1.5" title="use of @args in deow">
        <compile options="-1.5" files="TestingArgsAnnotations.java,DeclareEoW.java">
               <message kind="error" line="3" text="args() pointcut designator cannot be used in declare statement"/>
        </compile>
    </ajc-test> 
    
    <ajc-test dir="java5/annotations" vm="1.5" title="compiling an annotation">
        <compile options="-1.5" files="SimpleAnnotation.java">
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations" vm="1.5" title="compiling annotated file">
        <compile options="-1.5" files="SimpleAnnotation.java,AnnotatedType.java">
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/within" vm="1.5" title="annotations and within (src)">
        <compile files="PlainWithin.java,PlainWithinTests.java"
               aspectsFiles="PlainWithinTests.java"
               options="-1.5">
               <message kind="warning" line="21" text="positive within match on annotation"/>
               <message kind="warning" line="25" text="negative within match on annotation"/>
        </compile>
    </ajc-test>   

    <ajc-test dir="java5/annotations/attarget" vm="1.5" title="losing annotations...">
        <compile options="-1.5" files="Program.java,AtTargetAspect.java">
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations" vm="1.5" title="no itds on annotation types">
        <compile files="AnnotatedType.java,SimpleAnnotation.java,SimpleAnnotation2.java,AnnotationAspect01.aj"
               options="-1.5">
               <message kind="error" line="4" text="can't make inter-type constructor declarations"/>
               <message kind="error" line="8" text="can't make inter-type method declarations"/>
               <message kind="error" line="13" text="can't make inter-type field declarations"/>
        </compile>
    </ajc-test>   

   <ajc-test dir="java5/annotations" vm="1.5" title="no declare parents on annotation types">
        <compile files="AnnotatedType.java,SimpleAnnotation.java,SimpleAnnotation2.java,AnnotationAspect04.aj"
               options="-1.5">
               <message kind="error" line="7" text="can't use declare parents to alter supertype of annotation type SimpleAnnotation"/>
               <message kind="error" line="10" text="can't use declare parents to make 'java.lang.annotation.Annotation' the parent of type"/>
               <message kind="error" line="4" text="can't use declare parents to make annotation type SimpleAnnotation implement an interface"/>
        </compile>
    </ajc-test>   

   <ajc-test dir="java5/annotations" vm="1.5" title="declare parents wildcards matching annotation types">
        <compile files="AnnotatedType.java,SimpleAnnotation.java,SimpleAnnotation2.java,AnnotationAspect05.aj"
               options="-1.5">
               <message kind="warning" line="4" text="annotation type SimpleAnnotation2 matches a declare parents type pattern but is being ignored"/>
               <message kind="warning" line="4" text="annotation type SimpleAnnotation matches a declare parents type pattern but is being ignored"/>
        </compile>
    </ajc-test>   
    
   <ajc-test dir="java5/annotations/binding/complexExample" vm="1.5" title="annotated any pattern">
        <compile files="A.java,B.java,C.java,Color.java,X3.java"
               options="-1.5">
        </compile>
        <run class="g.h.i.C"/>
        <run class="a.b.c.A"/>
    </ajc-test>   
    
   <ajc-test dir="java5/annotations/binding/complexExample" vm="1.5" title="annotation not imported">
        <compile files="A.java,B.java,C.java,Color.java,X4.java"
               options="-1.5">
               <message kind="warning" line="6" text="no match for this type name: Color"/>
        </compile>
        <run class="a.b.c.A"/>
    </ajc-test>   
    
    <ajc-test dir="java5/annotations/itds" vm="1.5" title="annotated public itds">
      <compile files="AtItd2.aj" options="-1.5"/>
      <run class="AtItd2"/>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/itds" vm="1.5" title="annotated public itds - values">
      <compile files="AtItd3.aj" options="-1.5"/>
      <run class="AtItd3"/>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/itds" vm="1.5" title="annotated public itds - multiple complex annotations">
      <compile files="AtItd4.aj" options="-1.5"/>
      <run class="AtItd4"/>
    </ajc-test>
    
    
    <ajc-test dir="java5/annotations/itds" vm="1.5" title="nasty annotation and itds test">
        <compile files="AnnotationsAndITDs.aj" options="-1.5">
            <!-- first two are ITCs, second two are ITCs annotated via declare @ctor, third is default ctor -->
            <message kind="warning" line="17" text="execution(@SomeAnnotation ...new(..)"/>    
            <message kind="warning" line="20" text="execution(@SomeAnnotation ...new(..)"/>    
            <message kind="warning" line="45" text="execution(@SomeAnnotation ...new(..)"/>    
            <message kind="warning" line="46" text="execution(@SomeAnnotation ...new(..)"/>
            <message kind="warning" line="180" text="execution(@SomeAnnotation ...new(..)"/>

			<!-- first four are fields annotated via declare, last two are directly annotated ITDs -->
            <message kind="warning" line="59" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="60" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="70" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="71" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="76" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="77" text="set(@SomeAnnotation...)"/>  

			<!-- annotations added via declare -->
            <message kind="warning" line="175" text="si(@SomeAnnotation...)"/>  
            <message kind="warning" line="180" text="si(@SomeAnnotation...)"/>  
            
            <message kind="warning" line="25" text="execution(@SomeAnnotation ...)"/>        
            <message kind="warning" line="28" text="execution(@SomeAnnotation ...)"/>        
            <message kind="warning" line="52" text="execution(@SomeAnnotation ...)"/>        
            <message kind="warning" line="53" text="execution(@SomeAnnotation ...)"/>    
            <!--message kind="warning" line="70" text="set(@SomeAnnotation...)"/>    
            <message kind="warning" line="71" text="set(@SomeAnnotation...)"/-->    
        </compile>
        <run class="AnnotationsAndITDs">
            <stderr>
                <line text="@type java.lang.System (AnnotationsAndITDs.aj:0)"/>
                <line text="hello AnnotationsAndITDs (AnnotationsAndITDs.aj:17)"/>
                <line text="goodbye java.lang.String (AnnotationsAndITDs.aj:20)"/>
                <line text="goodbye java.lang.String (AnnotationsAndITDs.aj:20)"/>
                <line text="y java.lang.Integer (AnnotationsAndITDs.aj:28)"/>
                <line text="d java.lang.Double (AnnotationsAndITDs.aj:70)"/>
                <line text="f java.lang.Double (AnnotationsAndITDs.aj:71)"/>
                <line text="@type java.lang.System (AnnotationsAndITDs.aj:0)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:59)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:60)"/>
                <line text="@cons java.lang.String (AnnotationsAndITDs.aj:45)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:59)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:60)"/>
                <line text="@cons java.lang.String (AnnotationsAndITDs.aj:46)"/>
                <line text="@cons java.lang.String (AnnotationsAndITDs.aj:46)"/>
                <line text="@method ITDMe2 (AnnotationsAndITDs.aj:53)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:76)"/>
                <line text="@field ITDMe2 (AnnotationsAndITDs.aj:77)"/>
                
                <!--
                <line text="method bar has 1 params, first param annotation is @ParamAnnotation"/>
                -->
            </stderr>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/declare" pr="91858" title="declare @Type (should be @type)">
        <compile files="DeathByPoorSpelling.aj" options="-1.5">
            <message kind="error" line="6" text="Syntax error on token &quot;:&quot;, &quot;one of type, method, field, constructor&quot; expected"/>
        </compile>
    </ajc-test>
    
   <!-- ======================================================================================= -->
   <!--               Autoboxing tests                                                          -->
   <!-- ======================================================================================= -->

   <ajc-test dir="java5/autoboxing" vm="1.5" title="simple boxing test">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,SimpleAutoboxingAspect.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'SimpleAutoboxing' (SimpleAutoboxing.java:7) advised by before advice from 'SimpleAutoboxingAspect' (SimpleAutoboxingAspect.aj:8)"/>
               <message kind="weave" text="Type 'SimpleAutoboxing' (SimpleAutoboxing.java:7) advised by before advice from 'SimpleAutoboxingAspect' (SimpleAutoboxingAspect.aj:4)"/>
        </compile>
        <run class="SimpleAutoboxing">
          <stderr>
              <line text="Matching by Integer:20000"/>
              <line text="Matching by int:20000"/>
              <line text="method_takes_Integer=20000"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="integer boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectInteger.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:11) advised by before advice from 'AspectInteger' (AspectInteger.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:11) advised by before advice from 'AspectInteger' (AspectInteger.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:12) advised by before advice from 'AspectInteger' (AspectInteger.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:12) advised by before advice from 'AspectInteger' (AspectInteger.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:13) advised by before advice from 'AspectInteger' (AspectInteger.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:13) advised by before advice from 'AspectInteger' (AspectInteger.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:14) advised by before advice from 'AspectInteger' (AspectInteger.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingI' (AutoboxingI.java:14) advised by before advice from 'AspectInteger' (AspectInteger.aj:4)"/>
        </compile>
        <run class="AutoboxingI">
          <stderr>
              <line text="Matching by Integer:10000"/>
              <line text="Matching by int:10000"/>
              <line text="method_takes_Integer=10000"/>
              <line text="Matching by Integer:20000"/>
              <line text="Matching by int:20000"/>
              <line text="method_takes_Integer=20000"/>
              <line text="Matching by Integer:30000"/>
              <line text="Matching by int:30000"/>
              <line text="method_takes_int=30000"/>
              <line text="Matching by Integer:40000"/>
              <line text="Matching by int:40000"/>
              <line text="method_takes_int=40000"/>
          </stderr>
        </run>
   </ajc-test>   
   
     <ajc-test dir="java5/autoboxing" vm="1.5" title="char boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectChar.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:11) advised by before advice from 'AspectChar' (AspectChar.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:11) advised by before advice from 'AspectChar' (AspectChar.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:12) advised by before advice from 'AspectChar' (AspectChar.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:12) advised by before advice from 'AspectChar' (AspectChar.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:13) advised by before advice from 'AspectChar' (AspectChar.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:13) advised by before advice from 'AspectChar' (AspectChar.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:14) advised by before advice from 'AspectChar' (AspectChar.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingC' (AutoboxingC.java:14) advised by before advice from 'AspectChar' (AspectChar.aj:4)"/>
        </compile>
        <run class="AutoboxingC">
          <stderr>
              <line text="Character:1"/>
              <line text="char:1"/>
              <line text="method_takes_Character=1"/>
              <line text="Character:2"/>
              <line text="char:2"/>
              <line text="method_takes_Character=2"/>
              <line text="Character:3"/>
              <line text="char:3"/>
              <line text="method_takes_char=3"/>
              <line text="Character:4"/>
              <line text="char:4"/>
              <line text="method_takes_char=4"/>
          </stderr>
        </run>
   </ajc-test>   
   
       <ajc-test dir="java5/autoboxing" vm="1.5" title="double boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectDouble.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:11) advised by before advice from 'AspectDouble' (AspectDouble.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:11) advised by before advice from 'AspectDouble' (AspectDouble.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:12) advised by before advice from 'AspectDouble' (AspectDouble.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:12) advised by before advice from 'AspectDouble' (AspectDouble.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:13) advised by before advice from 'AspectDouble' (AspectDouble.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:13) advised by before advice from 'AspectDouble' (AspectDouble.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:14) advised by before advice from 'AspectDouble' (AspectDouble.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingD' (AutoboxingD.java:14) advised by before advice from 'AspectDouble' (AspectDouble.aj:4)"/>
        </compile>
        <run class="AutoboxingD">
          <stderr>
              <line text="Double:100.0"/>
              <line text="double:100.0"/>
              <line text="method_takes_Double=100.0"/>
              <line text="Double:200.0"/>
              <line text="double:200.0"/>
              <line text="method_takes_Double=200.0"/>
              <line text="Double:300.0"/>
              <line text="double:300.0"/>
              <line text="method_takes_double=300.0"/>
              <line text="Double:400.0"/>
              <line text="double:400.0"/>
              <line text="method_takes_double=400.0"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="float boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectFloat.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:11) advised by before advice from 'AspectFloat' (AspectFloat.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:11) advised by before advice from 'AspectFloat' (AspectFloat.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:12) advised by before advice from 'AspectFloat' (AspectFloat.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:12) advised by before advice from 'AspectFloat' (AspectFloat.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:13) advised by before advice from 'AspectFloat' (AspectFloat.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:13) advised by before advice from 'AspectFloat' (AspectFloat.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:14) advised by before advice from 'AspectFloat' (AspectFloat.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingF' (AutoboxingF.java:14) advised by before advice from 'AspectFloat' (AspectFloat.aj:4)"/>
        </compile>
        <run class="AutoboxingF">
          <stderr>
              <line text="Float:100.0"/>
              <line text="float:100.0"/>
              <line text="method_takes_Float=100.0"/>
              <line text="Float:200.0"/>
              <line text="float:200.0"/>
              <line text="method_takes_Float=200.0"/>
              <line text="Float:300.0"/>
              <line text="float:300.0"/>
              <line text="method_takes_float=300.0"/>
              <line text="Float:400.0"/>
              <line text="float:400.0"/>
              <line text="method_takes_float=400.0"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="short boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectShort.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:11) advised by before advice from 'AspectShort' (AspectShort.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:11) advised by before advice from 'AspectShort' (AspectShort.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:12) advised by before advice from 'AspectShort' (AspectShort.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:12) advised by before advice from 'AspectShort' (AspectShort.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:13) advised by before advice from 'AspectShort' (AspectShort.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:13) advised by before advice from 'AspectShort' (AspectShort.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:14) advised by before advice from 'AspectShort' (AspectShort.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingS' (AutoboxingS.java:14) advised by before advice from 'AspectShort' (AspectShort.aj:4)"/>
        </compile>
        <run class="AutoboxingS">
          <stderr>
              <line text="Short:100"/>
              <line text="short:100"/>
              <line text="method_takes_Short=100"/>
              <line text="Short:200"/>
              <line text="short:200"/>
              <line text="method_takes_Short=200"/>
              <line text="Short:300"/>
              <line text="short:300"/>
              <line text="method_takes_short=300"/>
              <line text="Short:400"/>
              <line text="short:400"/>
              <line text="method_takes_short=400"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="long boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectLong.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:11) advised by before advice from 'AspectLong' (AspectLong.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:11) advised by before advice from 'AspectLong' (AspectLong.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:12) advised by before advice from 'AspectLong' (AspectLong.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:12) advised by before advice from 'AspectLong' (AspectLong.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:13) advised by before advice from 'AspectLong' (AspectLong.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:13) advised by before advice from 'AspectLong' (AspectLong.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:14) advised by before advice from 'AspectLong' (AspectLong.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingJ' (AutoboxingJ.java:14) advised by before advice from 'AspectLong' (AspectLong.aj:4)"/>
        </compile>
        <run class="AutoboxingJ">
          <stderr>
              <line text="Long:1000000"/>
              <line text="long:1000000"/>
              <line text="method_takes_Long=1000000"/>
              <line text="Long:2000000"/>
              <line text="long:2000000"/>
              <line text="method_takes_Long=2000000"/>
              <line text="Long:3000000"/>
              <line text="long:3000000"/>
              <line text="method_takes_long=3000000"/>
              <line text="Long:4000000"/>
              <line text="long:4000000"/>
              <line text="method_takes_long=4000000"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="boolean boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectBoolean.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:9) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:9) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:10) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:10) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:11) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:11) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:12) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingZ' (AutoboxingZ.java:12) advised by before advice from 'AspectBoolean' (AspectBoolean.aj:4)"/>
        </compile>
        <run class="AutoboxingZ">
          <stderr>
              <line text="Boolean:false"/>
              <line text="boolean:false"/>
              <line text="method_takes_Boolean=false"/>
              <line text="Boolean:false"/>
              <line text="boolean:false"/>
              <line text="method_takes_Boolean=false"/>
              <line text="Boolean:false"/>
              <line text="boolean:false"/>
              <line text="method_takes_boolean=false"/>
              <line text="Boolean:false"/>
              <line text="boolean:false"/>
              <line text="method_takes_boolean=false"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="byte boxing">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectByte.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:11) advised by before advice from 'AspectByte' (AspectByte.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:11) advised by before advice from 'AspectByte' (AspectByte.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:12) advised by before advice from 'AspectByte' (AspectByte.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:12) advised by before advice from 'AspectByte' (AspectByte.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:13) advised by before advice from 'AspectByte' (AspectByte.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:13) advised by before advice from 'AspectByte' (AspectByte.aj:4)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:14) advised by before advice from 'AspectByte' (AspectByte.aj:8)"/>
               <message kind="weave" text="Type 'AutoboxingB' (AutoboxingB.java:14) advised by before advice from 'AspectByte' (AspectByte.aj:4)"/>
        </compile>
        <run class="AutoboxingB">
          <stderr>
              <line text="Byte:1"/>
              <line text="byte:1"/>
              <line text="method_takes_Byte=1"/>
              <line text="Byte:50"/>
              <line text="byte:50"/>
              <line text="method_takes_Byte=50"/>
              <line text="Byte:3"/>
              <line text="byte:3"/>
              <line text="method_takes_byte=3"/>
              <line text="Byte:52"/>
              <line text="byte:52"/>
              <line text="method_takes_byte=52"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/autoboxing" vm="1.5" title="boxing in after returning">
        <compile files="AutoboxingB.java,AutoboxingC.java,AutoboxingD.java,AutoboxingF.java,AutoboxingI.java,AutoboxingJ.java,AutoboxingS.java,AutoboxingZ.java,SimpleAutoboxing.java,AspectAfterReturning.aj"
               options="-1.5,-showWeaveInfo">
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:18) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:4)"/>
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:18) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:8)"/>
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:18) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:12)"/>
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:19) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:4)"/>
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:19) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:8)"/>
               <message kind="weave" text="Type 'AspectAfterReturning' (AspectAfterReturning.aj:19) advised by afterReturning advice from 'AspectAfterReturning' (AspectAfterReturning.aj:12)"/>
        </compile>
        <run class="AspectAfterReturning">
          <stderr>
              <line text="Returning I=5"/>
              <line text="Returning Integer=5"/>
              <line text="Returning Object=5"/>
              <line text="Returning I=10"/>
              <line text="Returning Integer=10"/>
              <line text="Returning Object=10"/>
          </stderr>
        </run>
   </ajc-test>   

   <!-- ======================================================================================= -->
   <!--               Covariance tests                                                          -->
   <!-- ======================================================================================= -->

    <ajc-test dir="java5/covariance" vm="1.5" title="covariance 1">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect01.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:26) advised by before advice from 'CovAspect01' (CovAspect01.aj:5)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect01' (CovAspect01.aj:5)"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/covariance" vm="1.5" title="covariance 2">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect02.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:26) advised by before advice from 'CovAspect02' (CovAspect02.aj:5)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect02' (CovAspect02.aj:5)"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/covariance" vm="1.5" title="covariance 3">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect03.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:26) advised by before advice from 'CovAspect03' (CovAspect03.aj:5)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect03' (CovAspect03.aj:5)"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 4">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram02.java,CovAspect04.aj">
            <message kind="weave" text="Type 'CovBaseProgram02' (CovBaseProgram02.java:30) advised by before advice from 'CovAspect04' (CovAspect04.aj:5)"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 5">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect05.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:26) advised by before advice from 'CovAspect05' (CovAspect05.aj:5)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect05' (CovAspect05.aj:5)"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 6">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect06.aj">
            <message kind="warning" line="3" text="does not match because declaring type is Super"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 7">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect07.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect07' (CovAspect07.aj:5)"/>
            <message kind="warning" line="3" text="does not match because declaring type is Super"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 8">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect08.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect08' (CovAspect08.aj:11)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect08' (CovAspect08.aj:5)"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 9">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect09.aj">
        </compile>
    </ajc-test>

   <ajc-test dir="java5/covariance" vm="1.5" title="covariance 10">
        <compile options="-1.5,-showWeaveInfo" files="CovBaseProgram01.java,CovAspect10.aj">
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:26) advised by before advice from 'CovAspect10' (CovAspect10.aj:5)"/>
            <message kind="weave" text="Type 'CovBaseProgram01' (CovBaseProgram01.java:27) advised by before advice from 'CovAspect10' (CovAspect10.aj:5)"/>
        </compile>
    </ajc-test>

   <!-- ======================================================================================= -->
   <!--               Enum tests                                                                -->
   <!-- ======================================================================================= -->

    <ajc-test dir="java5/enums" vm="1.5" title="cant itd constructor on enum">
        <compile files="SimpleEnum.java,SimpleEnum2.java,EnumAspect01.aj" options="-1.5">
            <message kind="error" line="2" text="can't make inter-type constructor declarations on enum types"/>
        </compile>
    </ajc-test>

   <ajc-test dir="java5/enums" vm="1.5" title="cant itd field or method on enum">
        <compile files="SimpleEnum.java,SimpleEnum2.java,EnumAspect02.aj" options="-1.5">
            <message kind="error" line="2" text="can't make inter-type method declarations on enum types"/>
            <message kind="error" line="6" text="can't make inter-type field declarations on enum types"/>
        </compile>
    </ajc-test>
    
   <ajc-test dir="java5/enums" vm="1.5" title="declare parents and enums">
        <compile files="SimpleEnum.java,SimpleEnum2.java,EnumAspect03.aj" options="-1.5">
            <message kind="error" line="5" text="can't use declare parents to make enum type SimpleEnum implement an interface"/>
            <message kind="error" line="8" text="can't use declare parents to alter supertype of enum type SimpleEnum"/>
            <message kind="error" line="11" text="can't use declare parents to make 'java.lang.Enum' the parent of type EnumAspect03$D"/>          
        </compile>
    </ajc-test>

    <ajc-test dir="java5/enums" vm="1.5" title="wildcard enum match in itd">
        <compile files="SimpleEnum.java,SimpleEnum2.java,EnumAspect04.aj" options="-1.5">
            <message kind="warning" line="5" text="enum type SimpleEnum2 matches a declare parents type pattern but is being ignored"/>
            <message kind="warning" line="5" text="enum type SimpleEnum matches a declare parents type pattern but is being ignored"/>
        </compile>
    </ajc-test>

   <!-- ======================================================================================= -->
   <!--               pertypewithin tests                                                       -->
   <!-- ======================================================================================= -->
    
   <ajc-test dir="java5/pertypewithin" title="basic ptw test">
       <compile files="A.java,B.java,C.java,D.java,Main.java,X.java"/>
       <run class="p.A">
           <stderr>
               <line text="hi from A"/>
               <line text="after() returning from a method call to sayhi()"/>
               <line text="hi from A"/>
               <line text="after() returning from a method call to sayhi()"/>
               <line text="Tests in A have passed"/>
               <line text="callcount = 2"/>
           </stderr>
       </run>
   </ajc-test> 

   <ajc-test dir="java5/pertypewithin" title="ptw hasAspect">
       <compile files="A.java,B.java,C.java,D.java,Main.java,X.java"/>
       <run class="p.B">
           <stderr>
               <line text="hi from B"/>
               <line text="after() returning from a method call to sayhi()"/>
               <line text="hi from B"/>
               <line text="after() returning from a method call to sayhi()"/>
               <line text="hi from B"/>
               <line text="after() returning from a method call to sayhi()"/>
               <line text="callcount = 3"/>
           </stderr>
       </run>
   </ajc-test> 
   
    <ajc-test dir="java5/pertypewithin" title="ptw aspectOf">
       <compile files="A.java,B.java,C.java,D.java,Main.java,X.java"/>
       <run class="p.C"/>
   </ajc-test> 

    <ajc-test dir="java5/pertypewithin" title="ptw multi-aspects">
       <compile files="P.java,Q.java,R.java"/>
       <run class="P">
           <stderr>
               <line text="Q reporting 2"/>
               <line text="R reporting 3"/>
           </stderr>
       </run>
   </ajc-test> 

    <ajc-test dir="java5/pertypewithin" title="ptw binary">
       <weave classesFiles="G.java" aspectsFiles="H.java"/>
       <run class="G">
           <stderr>
               <line text="advice running"/>
           </stderr>
       </run>
   </ajc-test> 
   
   <ajc-test dir="java5/pertypewithin" title="ptw binary aspect">
       <compile files="H.java" outjar="aspects.jar">
           <message kind="warning" line="1" text="no match for this type name: G"/>
       </compile>
       <compile files="G.java" aspectpath="aspects.jar"/>
       <run class="G">
           <stderr>
               <line text="advice running"/>
           </stderr>
       </run>
   </ajc-test>

   <!-- ======================================================================================= -->
   <!--               varargs tests                                                             -->
   <!-- ======================================================================================= -->

   <ajc-test dir="java5/varargs" vm="1.5" title="varargs not matched by Object[] (call)">
       <compile files="SimpleVarargs.java,VarargsAspect01.aj" options="-1.5,-showWeaveInfo">
       </compile>
   </ajc-test>

   <ajc-test dir="java5/varargs" vm="1.5" title="varargs not matched by Object[] (exe)">
       <compile files="SimpleVarargs.java,VarargsAspect02.aj" options="-1.5,-showWeaveInfo">
       </compile>
   </ajc-test>

   <ajc-test dir="java5/varargs" vm="1.5" title="varargs not matched by Object[] (init)">
       <compile files="SimpleVarargs.java,VarargsAspect03.aj" options="-1.5,-showWeaveInfo">
       </compile>
   </ajc-test>

   <ajc-test dir="java5/varargs" vm="1.5" title="varargs not matched by Object[] (withincode)">
       <compile files="SimpleVarargs.java,VarargsAspect04.aj" options="-1.5,-showWeaveInfo">
       </compile>
   </ajc-test>

  <ajc-test dir="java5/varargs" vm="1.5" title="call with varargs signature">
       <compile files="SimpleVarargs.java,VarargsAspect05.aj" options="-1.5,-showWeaveInfo">
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:20) advised by before advice from 'VarargsAspect05' (VarargsAspect05.aj:3)"/>
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:21) advised by before advice from 'VarargsAspect05' (VarargsAspect05.aj:3)"/>
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:22) advised by before advice from 'VarargsAspect05' (VarargsAspect05.aj:3)"/>
       </compile>
   </ajc-test>

     <ajc-test dir="java5/varargs" vm="1.5" title="call with varargs multi-signature">
       <compile files="SimpleVarargs.java,VarargsAspect06.aj" options="-1.5,-showWeaveInfo">
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:25) advised by before advice from 'VarargsAspect06' (VarargsAspect06.aj:3)"/>
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:26) advised by before advice from 'VarargsAspect06' (VarargsAspect06.aj:3)"/>
           <message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:27) advised by before advice from 'VarargsAspect06' (VarargsAspect06.aj:3)"/>
       </compile>
   </ajc-test>
   
   <ajc-test dir="java5/suppressedWarnings" vm="1.5" title="suppressing non-matching advice warnings">
       <compile files="Suppression1.aj" options="-1.5,-showWeaveInfo">
       	 <message kind="warning" line="13"/>
         <message kind="warning" line="21"/>
       </compile>
   </ajc-test>
   
    <ajc-test dir="java5/suppressedWarnings" vm="1.5" title="suppressing non-matching advice warnings when multiple source files involved">
       <compile files="A.java,A1.aj,A2.aj,A3.aj" options="-1.5,-showWeaveInfo">
         <message kind="warning" line="4" file="A1.aj"/>
         <message kind="warning" line="4" file="A2.aj"/>
         <message kind="warning" line="11" file="A2.aj"/>
         <message kind="warning" line="4" file="A3.aj"/>
         <message kind="warning" line="11" file="A3.aj"/>
       </compile>
   </ajc-test>
   
   <ajc-test dir="bugs150" title="XLint warning for advice not applied with cflow(execution)" pr="93345">
     <compile options="-Xlint,-1.5" files="PR93345.aj" >
       <message kind="warning" line="7" text="advice defined in AnAspect has not been applied [Xlint:adviceDidNotMatch]"/>
     </compile>
  </ajc-test>
   
  <ajc-test dir="bugs150" title="NPE in reflect implementation" pr="94167">
     <compile files="PR94167.java"/>
     <run class="reflect.PR94167"/>
  </ajc-test>

   <!-- ======================================================================================= -->
   <!--               annotated aspect members                                                  -->
   <!-- ======================================================================================= -->

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated annotations (@Target)">
        <compile files="a/Annotations.java,a/Foo.java" options="-1.5">
            <message kind="error" line="16" text="The annotation @MethodAnnotation is disallowed for this location"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="simple annotated aspect members">
        <compile files="a/Annotations.java,a/AnnotatedAspect.aj" options="-1.5">
            <message kind="warning" line="4" text="annotated type"/>
            <message kind="warning" line="6" text="annotated field"/>
            <message kind="warning" line="8" text="annotated method"/>
            <message kind="warning" line="11" text="annotated constructor"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="simple annotated aspect members with bad target">
        <compile files="a/Annotations.java,a/AnnotatedAspect02.aj" options="-1.5">
            <message kind="error" line="3" text="The annotation @MethodAnnotation is disallowed for this location"/>
            <message kind="error" line="6" text="The annotation @TypeAnnotation is disallowed for this location"/>
            <message kind="error" line="8" text="The annotation @FieldAnnotation is disallowed for this location"/>
            <message kind="error" line="10" text="The annotation @AnnotationAnnotation is disallowed for this location"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated itds">
        <compile files="a/Annotations.java,a/AnnotatedAspect03.aj" options="-1.5">
            <message kind="warning" line="4" text="annotated type"/>
            <message kind="warning" line="6" text="annotated field"/>
            <message kind="warning" line="8" text="annotated field"/>
            <message kind="warning" line="10" text="annotated method"/>
            <message kind="warning" line="12" text="annotated constructor"/>
            <message kind="warning" line="12" text="annotated field"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated itds with bad target">
        <compile files="a/Annotations.java,a/AnnotatedAspect04.aj" options="-1.5">
            <message kind="error" line="6" text="The annotation @ConstructorAnnotation is disallowed for this location"/>
            <message kind="error" line="8" text="The annotation @FieldAnnotation is disallowed for this location"/>
            <message kind="error" line="10" text="The annotation @TypeAnnotation is disallowed for this location"/>
            <!-- known limitation...
                <message kind="error" line="12" text="The annotation @MethodAnnotation is disallowed for this location"/>
            -->
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated advice">
        <compile files="a/Annotations.java,a/AnnotatedAspect05.aj" options="-1.5">
            <message kind="warning" line="17"/>
        </compile>
        <run class="a.AnnotatedAspect05"/>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated advice with bad target">
        <compile files="a/Annotations.java,a/AnnotatedAspect06.aj" options="-1.5">
            <message kind="error" line="6" text="The annotation @ConstructorAnnotation is disallowed for this location"/>
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/aspectMembers" title="annotated pointcut">
        <compile files="a/Annotations.java,a/AnnotatedAspect07.aj" options="-1.5">
        </compile>
    </ajc-test>

   <ajc-test dir="java5/annotations/aspectMembers" title="annotated declare statements">
        <compile files="a/Annotations.java,a/AnnotatedAspect08.aj" options="-1.5">
        </compile>
    </ajc-test>

 <!-- ======================================================================================= -->
   <!--               ajdk examples                                                             -->
   <!-- ======================================================================================= -->
   <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: annotating aspects chapter">
        <compile files="AnnotatingAspects.aj" options="-1.5">
        </compile>
    </ajc-test>
   
    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: annotating aspects chapter, ex 2">
        <compile files="SuppressAj.aj" options="-1.5">
        </compile>
    </ajc-test>
   
    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: annotation pattern matching">
        <compile files="AnnotationPatternMatching.aj,org/xyz/OrgXYZAnnotation.java" options="-1.5">
            <message kind="warning" line="25" text="@Immutable"/>
            <message kind="warning" line="25" text="!@Persistent"/>
            <message kind="warning" line="29" text="!@Persistent"/>
            <message kind="warning" line="31" text="!@Persistent"/>
            <message kind="warning" line="33" text="!@Persistent"/>
            <message kind="warning" line="29" text="@Foo @Goo"/>
            <message kind="warning" line="29" text="@(Foo || Goo)"/>
            <message kind="warning" line="31" text="@(Foo || Goo)"/>
            <message kind="warning" line="33" text="@(org.xyz..*)"/>            
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: annotation type pattern matching">
        <compile files="AnnotationsInTypePatterns.aj,org/xyz/OrgXYZAnnotation.java,org/xyz/Types.java,org/abc/Types.java,anns/Immutable.java,anns/NonPersistent.java" options="-1.5">
            <message kind="warning" line="23" text="(@Immutable *)"/>
            <message kind="warning" line="32" text="(@Immutable *)"/>
            <message kind="warning" line="3" text="(@Immutable *)"/>
            <message kind="warning" line="5" text="(@Immutable *)"/>
            <message kind="warning" line="8" text="(@Immutable *)"/>
            <message kind="warning" line="25" text="(!@Immutable *)"/>
            <message kind="warning" line="27" text="(!@Immutable *)"/>
            <message kind="warning" line="29" text="(!@Immutable *)"/>
            <message kind="warning" line="5" text="(!@Immutable *)"/>
            <message kind="warning" line="6" text="(!@Immutable *)"/>
            <message kind="warning" line="2" text="(!@Immutable *)"/>
            <message kind="warning" line="2" text="(!@Immutable *)"/>
            <message kind="warning" line="5" text="(!@Immutable *)"/>
            <message kind="warning" line="3" text="@Immutable (org.xyz.* || org.abc.*)"/>
            <message kind="warning" line="5" text="@Immutable (org.xyz.* || org.abc.*)"/>
            <message kind="warning" line="8" text="@Immutable (org.xyz.* || org.abc.*)"/>
            <message kind="warning" line="32" text="((@Immutable Foo+) || Goo)"/>
            <message kind="warning" line="27" text="((@Immutable Foo+) || Goo)"/>
            <message kind="warning" line="3" text="@(Immutable || NonPersistent) org.xyz..*"/>
            <message kind="warning" line="6" text="@(Immutable || NonPersistent) org.xyz..*"/>
            <message kind="warning" line="8" text="@(Immutable || NonPersistent) org.xyz..*"/>
            <message kind="warning" line="8" text="@Immutable @NonPersistent org.xyz..*"/>
            <message kind="warning" line="6" text="@(@Inherited *) org.xyz..*"/>
            <message kind="warning" line="8" text="@(@Inherited *) org.xyz..*"/>            
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: annotations in sig patterns">
        <compile files="AnnotationsInSignaturePatterns.aj,anns/Cachable.java,anns/SensitiveData.java,anns/Persisted.java,Classified.java,anns/Immutable.java,Secure.java,Catastrophic.java,Oneway.java,anns/Transaction.java,org/xyz/SignatureTypes.java" options="-1.5">
            <message kind="warning" line="32" text="@SensitiveData * *"/>
            <message kind="warning" line="7" text="@SensitiveData * *"/>
            <message kind="warning" line="13" text="@SensitiveData * *"/>
            <message kind="warning" line="7" text="@SensitiveData List org.xyz..*.*"/>
            <message kind="warning" line="11" text="(@SensitiveData *) org.xyz..*.*"/>
            <message kind="warning" line="13" text="(@SensitiveData *) org.xyz..*.*"/>
            <message kind="warning" line="50" text="@Foo (@Goo *) (@Hoo *).*"/>
            <message kind="warning" line="38" text="@Persisted @Classified * *"/>
            
            <message kind="warning" line="44" text="@Oneway * *(..)"/>
            <message kind="warning" line="18" text="@Transaction * (@Persisted org.xyz..*).*(..)"/>
            <message kind="warning" line="52" text="* *.*(@Immutable *,..)"/>
            <message kind="warning" line="53" text="* *.*(@Immutable *,..)"/>
            <message kind="warning" line="54" text="* *.*(@Immutable *,..)"/>
            
            <message kind="warning" line="62" text="within(@Secure *)"/>
            <message kind="warning" line="63" text="within(@Secure *)"/>
            <message kind="warning" line="66" text="staticinitialization(@Persisted *)"/>
            <message kind="warning" line="17" text="staticinitialization(@Persisted *)"/>
            <message kind="warning" line="56" text="call(@Oneway * *(..))"/>
            <message kind="warning" line="28" text="execution(public (@Immutable *) org.xyz..*.*(..))"/>
            <message kind="warning" line="26" text="set(@Cachable * *)"/>
            <message kind="warning" line="80" text="handler(!@Catastrophic *)"/>
            
        </compile>
    </ajc-test>

    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: runtime annotations">
        <compile files="RuntimeTypeMatching.aj" options="-1.5">
            <message kind="warning" line="121" text="@within(Foo)"/>
            <message kind="warning" line="122" text="@within(Foo)"/>
        </compile>
        <run class="RuntimeTypeMatching">
            <stdout>
              <line text="This information is TOP-SECRET"/>
              <line text="@target(Classified) at call(void A.a())"/>
              <line text="@this(Foo) at execution(void B.b())"/>
              <line text="Classified data being passed at call(void B.callA(A))"/>
              <line text="Classified data being passed at execution(void B.callA(A))"/>
              <line text="This information is TOP-SECRET"/>
              <line text="@target(Classified) at call(Class java.lang.Object.getClass())"/>
              <line text="1 @Foo()"/>
              <line text="1 @Foo()"/>
              <line text="1 @Classified(classification=TOP-SECRET)"/>
              <line text="This information is TOP-SECRET"/>
              <line text="Entering critical join point with priority 3"/>
              <line text="Entering critical join point with reflectively obtained priority 3"/>
              <line text="@target(Classified) at call(void A.a())"/>
              <line text="@this(Foo) at execution(void B.callA(A))"/>
              <line text="(Class) Transaction required at execution(void ByeByeEJB.method1())"/>
              <line text="(Method) Transaction required at execution(void ByeByeEJB.method1())"/>
              <line text="(Class) Transaction required at execution(void ByeByeEJB.method2())"/>
              <line text="(Method) Transaction required at execution(void ByeByeEJB.method2())"/>
              <line text="(Class) Transaction required at execution(void ByeByeEJB.method3())"/>
            </stdout>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: @retention checking">
        <compile files="RetentionTime.aj" options="-1.5">
            <message kind="error" line="8" text="Annotation type Goo does not have runtime retention"/>
            <message kind="error" line="13" text="Annotation type Goo does not have runtime retention"/>
            <message kind="error" line="18" text="Annotation type Goo does not have runtime retention"/>
        </compile>
    </ajc-test>
    
     <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: @inherited">
        <compile files="AnnotationInheritance.aj" options="-1.5">
            <message kind="warning" line="16" text="annotatedMethodCall()"/>
            <message kind="warning" line="16" text="c1MethodCall()"/>
            <message kind="warning" line="17" text="c1MethodCall()"/>
        </compile>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: deow-ann">
        <compile files="DeclaresWithAnnotations.aj,org/xyz/model/Model.java" options="-1.5">
            <message kind="warning" line="27" text="Expensive operation called from within performance critical section"/>
            <message kind="error" line="26" text="Untrusted code should not call the model classes directly"/>
        </compile>
    </ajc-test>    
    
      <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: decp-ann">
        <compile files="DecpAnnotations.aj" options="-1.5">
        </compile>
        <run class="DecpAnnotations">
            <stdout>
                <line text="Test Foo is not secured: PASS"/>
                <line text="Test Goo is secured: PASS"/>
                <line text="goo credentials: none"/>
                <line text="Test BankAccount is not secured: PASS"/>
                <line text="Test PrivateBankAccount is not secured: PASS"/>
                <line text="Test BusinessBankAccount is secured: PASS"/>
            </stdout>
        </run>
    </ajc-test>    

    <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: dec precedence">
        <compile files="PrecedenceAnnotations.aj" options="-1.5">
        </compile>
        <run class="PrecedenceAnnotations">
            <stdout>
                <line text="@Security S2"/>
                <line text="S1"/>
                <line text="@Performance P2"/>
                <line text="P1"/>
            </stdout>
        </run>
    </ajc-test>  

   <ajc-test dir="java5/annotations/ajdkExamples" title="ajdk: dec annotation">
        <compile files="DeclareAnnotation.aj,org/xyz/model/Model.java" options="-1.5">
            <message kind="warning" line="3" text="@BusinessDomain"/>
            <message kind="warning" line="43" text="@Secured"/>
            <message kind="warning" line="44" text="@Secured"/>
            <message kind="warning" line="55" text="@Secured"/>
            <message kind="warning" line="62" text="@Persisted"/>
            <message kind="warning" line="68" text="@Persisted"/>
            <message kind="warning" line="41" text="@Secured"/>
            <message kind="warning" line="51" text="@Secured"/>
        </compile>
        <run class="DeclareAnnotation"/>
    </ajc-test>  
    
    <ajc-test dir="java5/covariance/ajdk" title="ajdk: covariance">
        <compile files="AJDKExamples.aj" options="-1.5">
            <message kind="warning" line="43" text="call(* whoAreYou())"/>
            <message kind="warning" line="44" text="call(* whoAreYou())"/>
            <message kind="warning" line="43" text="call(* A.whoAreYou())"/>
            <message kind="warning" line="44" text="call(* A.whoAreYou())"/>
            <message kind="warning" line="43" text="call(A whoAreYou())"/>
            <message kind="warning" line="44" text="call(A whoAreYou())"/>
            <message kind="warning" line="44" text="call(A+ B.whoAreYou())"/>
            <message kind="warning" line="44" text="call(B whoAreYou())"/>
            <message kind="warning" line="44" text="call(B B.whoAreYou())"/>
        </compile>
    </ajc-test>
    
    <ajc-test dir="java5/varargs/ajdk" title="ajdk: varargs">
        <compile files="AJDKExamples.aj,org/xyz/Foo.java,org/xyz/Goo.java,org/xyz/Hoo.java" options="-1.5">
            <message kind="warning" line="8" text="call vararg match"/>
            <message kind="warning" line="14" text="execution vararg match"/>
            <message kind="warning" line="5" text="init vararg match"/>
            <message kind="warning" line="6" text="init vararg match"/>
            <message kind="warning" line="27" text="single vararg"/>
            <message kind="warning" line="28" text="single String[]"/>
            <message kind="warning" line="18" text="single String[]"/>
        </compile>
        <run class="AJDKExamples">
            <stdout>
                <line text="Matched at call(void X.foo(int, String[]))"/>
            </stdout>
        </run>
    </ajc-test>

    <ajc-test dir="java5/pertypewithin/ajdk" title="ajdk: ptw">
        <compile files="AJDKExamples.aj" options="-1.5"/>
        <run class="org.xyz.foo.AJDKExamples">
            <stdout>
                <line text="true"/>
                <line text="true"/>
                <line text="There are 2 As"/>
                <line text="There are 3 Bs"/>
            </stdout>
        </run>
    </ajc-test>

   <!-- ======================================================================================= -->
   <!--               declare annotation                                                        -->
   <!-- ======================================================================================= -->

   <ajc-test dir="java5/annotations/declare" title="basic declare annotation parse test">
        <compile files="BasicParseTest.aj" options="-1.5">
        </compile>
    </ajc-test>

   <!-- ======================================================================================= -->
   <!--               declare annotation (@type)                                                        -->
   <!-- ======================================================================================= -->

    <ajc-test dir="java5/annotations/declare" title="declare @type 1">
        <compile files="DecaType1.java" options="-1.5"/>
        <run class="DecaType1">
          <stderr>
        	<line text="annotation is @MyAnnotation()"/>
          </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type 2">
        <compile files="DecaType2.java" options="-1.5,-Xlint:ignore" >
        </compile>
        <run class="DecaType2">
        <stderr>
        	<line text="annotation on DecaType2 is @MyAnnotation()"/>
        	<line text="annotation on X is @MyAnnotation()"/>
        	<line text="annotation on MyAnnotation is @MyAnnotation()"/>
        </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - with matching pointcut">
        <compile files="DecaType3.java" options="-1.5"/>
        <run class="DecaType3">
        	<stderr>
               <line text="hello world"/>
               <line text="advice running"/>
            </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - binary weaving">
        <weave classesFiles="BaseTypes.java"
               aspectsFiles="DecaTypeBin1.aj,Colored.java"
               options="-1.5"  xlintfile="ignoreTypeNotExposed.properties">
        </weave>
        <run class="BaseTypes">
        <stderr>
        	<line text="Color identified on class X"/>
        	<line text="A.m() running"/>
        	<line text="A.m() running"/>
        	<line text="A.m() running"/>
        </stderr>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/declare" title="declare @type - complex annotation - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="ComplexAnnotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - complex annotation - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin2.aj" options="-1.5"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="ComplexAnnotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/declare" title="declare @type - two annotations hit one type - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin3.aj" options="-1.5"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Color identified on execution(void A.m())"/>
        		<line text="Fruit identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - two annotations hit one type - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin3.aj" options="-1.5"  xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Color identified on execution(void A.m())"/>
        		<line text="Fruit identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run> 	 	
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 1) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaDecpInteractions1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 1) - source weaving">
        <compile files="BaseTypes.java,DecaDecpInteractions1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 2) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaDecpInteractions2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 2) - source weaving">
        <compile files="BaseTypes.java,DecaDecpInteractions2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 3) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaDecpInteractions3.aj" options="-1.5,-Xlint:ignore"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 3) - source weaving">
        <compile files="BaseTypes.java,DecaDecpInteractions3.aj" options="-1.5,-Xlint:ignore"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>

    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 4) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaDecpInteractions4.aj" options="-1.5,-Xlint:ignore"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    <ajc-test dir="java5/annotations/declare" title="declare @type - declare parents interactions (order 4) - source weaving">
        <compile files="BaseTypes.java,DecaDecpInteractions4.aj" options="-1.5,-Xlint:ignore"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Marker interface identified on execution(void A.m())"/>
        		<line text="Color annotation identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - annotating an already annotated type - binary weaving">
        <weave classesFiles="AnnotatedType.java" aspectsFiles="DecaTypeBin4.aj" options="-1.5,-Xlint:ignore"/>
        <run class="AnnotatedType">
        	<stderr>
        		<line text="Color identified on execution(void AnnotatedType.m())"/>
        		<line text="Fruit identified on execution(void AnnotatedType.m())"/>
        		<line text="m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    <ajc-test dir="java5/annotations/declare" title="declare @type - annotating an already annotated type - source weaving">
    	<compile files="AnnotatedType.java,DecaTypeBin4.aj" options="-1.5,-Xlint:ignore"/>
        <run class="AnnotatedType">
        	<stderr>
        		<line text="Color identified on execution(void AnnotatedType.m())"/>
        		<line text="Fruit identified on execution(void AnnotatedType.m())"/>
        		<line text="m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    
    <!--ajc-test dir="java5/annotations/declare" title="declare @type - annotations with different targets - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin5.aj" options="-1.5"  xlintfile="ignoreTypeNotExposed.properties">
            <message kind="error" line="15" text="The annotation @ColorM is disallowed for this location"/>
            <message kind="error" line="16" text="The annotation @ColorC is disallowed for this location"/>
            <message kind="error" line="18" text="The annotation @ColorF is disallowed for this location"/>
            <message kind="error" line="19" text="The annotation @ColorP is disallowed for this location"/>
            <message kind="error" line="20" text="The annotation @ColorL is disallowed for this location"/>
            <message kind="error" line="21" text="The annotation @ColorPkg is disallowed for this location"/>
        </weave>
        <run class="BaseTypes">
        	<stderr>
        		<line text="ColorT identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test-->
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - annotations with different targets - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin5.aj" options="-1.5"  xlintfile="ignoreTypeNotExposed.properties">
            <message kind="error" line="15" text="The annotation @ColorM is disallowed for this location"/>
            <message kind="error" line="16" text="The annotation @ColorC is disallowed for this location"/>
            <message king="error" line="17" text="A is not a valid target for annotation ColorA"/>
            <message kind="error" line="18" text="The annotation @ColorF is disallowed for this location"/>
            <message kind="error" line="19" text="The annotation @ColorP is disallowed for this location"/>
            <message kind="error" line="20" text="The annotation @ColorL is disallowed for this location"/>
            <message kind="error" line="21" text="The annotation @ColorPkg is disallowed for this location"/>
        </compile>
    </ajc-test>
    
    <!--ajc-test dir="java5/annotations/declare" title="declare @type - annotations with different targets (using type patterns) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin6.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" line="15" text="A is not a valid target for annotation ColorM"/>
          <message kind="warning" line="16" text="A is not a valid target for annotation ColorC"/>        
          <message kind="warning" line="17" text="A is not a valid target for annotation ColorL"/>
          <message kind="warning" line="17" text="B is not a valid target for annotation ColorL"/>
          <message kind="warning" line="17" text="C is not a valid target for annotation ColorL"/>
        </weave>
        <run class="BaseTypes">
        	<stderr>
        		<line text="ColorT identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="ColorT identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="ColorT identified on execution(void A.m())"/>
        		<line text="A.m() running"/>
        	</stderr>
        </run>
    </ajc-test-->
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - annotations with different targets (using type patterns) - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin6.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="error" line="15" text="The annotation @ColorM is disallowed for this location"/>
          <message kind="error" line="16" text="The annotation @ColorC is disallowed for this location"/>        
          <message kind="error" line="17" text="The annotation @ColorL is disallowed for this location"/>
          <message kind="error" line="18" text="The annotation @ColorF is disallowed for this location"/>
        </compile>
    </ajc-test>
    
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - complex decp decAtType interactions - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin7.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
        </weave>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Color identified on execution(void A.m())"/>
        		<line text="Fruit identified on execution(void A.m())"/>
        		<line text="Chocolate identified on execution(void A.m())"/>
        		<line text="M1 at execution(void A.m())"/>
        		<line text="M2 at execution(void A.m())"/>
        		<line text="M3 at execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Fruit identified on execution(void B.m())"/>
        		<line text="Chocolate identified on execution(void B.m())"/>
        		<line text="M1 at execution(void B.m())"/>
        		<line text="M2 at execution(void B.m())"/>
        		<line text="M3 at execution(void B.m())"/>
        		<line text="B.m() running"/>
        		<line text="Fruit identified on execution(void C.m())"/>
        		<line text="Chocolate identified on execution(void C.m())"/>
        		<line text="M1 at execution(void C.m())"/>
        		<line text="M2 at execution(void C.m())"/>
        		<line text="M3 at execution(void C.m())"/>
        		<line text="C.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - complex decp decAtType interactions - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin7.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="BaseTypes">
        	<stderr>
        		<line text="Color identified on execution(void A.m())"/>
        		<line text="Fruit identified on execution(void A.m())"/>
        		<line text="Chocolate identified on execution(void A.m())"/>
        		<line text="M1 at execution(void A.m())"/>
        		<line text="M2 at execution(void A.m())"/>
        		<line text="M3 at execution(void A.m())"/>
        		<line text="A.m() running"/>
        		<line text="Fruit identified on execution(void B.m())"/>
        		<line text="Chocolate identified on execution(void B.m())"/>
        		<line text="M1 at execution(void B.m())"/>
        		<line text="M2 at execution(void B.m())"/>
        		<line text="M3 at execution(void B.m())"/>
        		<line text="B.m() running"/>
        		<line text="Fruit identified on execution(void C.m())"/>
        		<line text="Chocolate identified on execution(void C.m())"/>
        		<line text="M1 at execution(void C.m())"/>
        		<line text="M2 at execution(void C.m())"/>
        		<line text="M3 at execution(void C.m())"/>
        		<line text="C.m() running"/>
        	</stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - trying to put annotation targetting annos on normal types - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin8.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="error" line="8" text="A is not a valid target for annotation ColorA"/>        
        </compile>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - trying to put annotation targetting annos on normal types - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin8.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="error" line="8" text="A is not a valid target for annotation ColorA"/>        
        </weave>
    </ajc-test>   

    <ajc-test dir="java5/annotations/declare" title="declare @type - trying to put annotation targetting annos on normal types (uses pattern) - source weaving">
        <compile files="BaseTypes.java,DecaTypeBin9.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" line="8" text="A is not a valid target for annotation ColorA"/>
        </compile>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - trying to put annotation targetting annos on normal types (uses pattern) - binary weaving">
        <weave classesFiles="BaseTypes.java" aspectsFiles="DecaTypeBin9.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" line="8" text="A is not a valid target for annotation ColorA"/>
        </weave>
    </ajc-test>   
    
    <ajc-test dir="java5/annotations/declare" title="declare @type - covering enum and class element values - source weaving">
        <compile files="EnumAndClassValues.aj,FunkyAnnotations.java" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="FunkyAnnotations">
        	<stderr>
               <line text="hello world"/>
            </stderr>
        </run>
    </ajc-test>
    
     <ajc-test dir="java5/annotations/declare" title="declare @type - covering enum and class element values - binary weaving">
        <weave aspectsFiles="EnumAndClassValues.aj" classesFiles="FunkyAnnotations.java" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="FunkyAnnotations">
        	<stderr>
               <line text="advice running: Red"/>
               <line text="advice running: class java.lang.Integer"/>
               <line text="method running"/>
            </stderr>
        </run>
    </ajc-test>
    
    
   <!-- ======================================================================================= -->
   <!--               declare annotation (@field)                                               -->
   <!-- ======================================================================================= -->

   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - simple source weaving">
        <compile files="Base.java,Colored.java,AtField1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - simple binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="AtField1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>   
   
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - two the same on one - source weaving">
        <compile files="Base.java,Colored.java,TwoOnOneField.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" text="int Base.publicIntField - already has an annotation of type Colored"/>
        </compile>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - two the same on one - binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="TwoOnOneField.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" text="int Base.publicIntField - already has an annotation of type Colored"/>
        </weave>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test> 
   
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - two different on one - source weaving">
        <compile files="Base.java,Colored.java,Fruit.java,TwoOnOneField2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
        </compile>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - two different on one - binary weaving">
        <weave classesFiles="Base.java,Colored.java,Fruit.java" aspectsFiles="TwoOnOneField2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
        </weave>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test> 
   
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - wrong target - source weaving">
        <compile files="Base.java,Colored.java,WrongTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
           <message kind="error" line="8" text="The annotation @MethodColoring is disallowed for this location"/>
           <message kind="error" line="9" text="The annotation @TypeColoring is disallowed for this location"/>
        </compile>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - right target - source weaving">
        <compile files="Base.java,Colored.java,RightTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - right target - binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="RightTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test> 
   
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - recursive application - source weaving">
        <compile files="Base.java,Colored.java,Fruit.java,RecursiveFields.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - recursive application - binary weaving">
        <weave classesFiles="Base.java,Colored.java,Fruit.java" aspectsFiles="RecursiveFields.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
   
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - recursive application (other order) - source weaving">
        <compile files="Base.java,Colored.java,Fruit.java,RecursiveFields2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atfield" title="declare @field - recursive application (other order) - binary weaving">
        <weave classesFiles="Base.java,Colored.java,Fruit.java" aspectsFiles="RecursiveFields2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Fruit field access at set(int Base.publicIntField)"/>
          </stderr>
        </run>
   </ajc-test>   
   <!-- incorrect target type for annotation on field -->
   
   <!-- incorrect target type for annotation on method -->
   <!-- two annotations on one method -->
   <!-- two of the same annotation on one method - error -->
   <!-- two of the same on one using pattern spec  - lint -->
   
<!-- need some incorrect signatures in the declare @statements - e.g. declare @constructor: public Base(int): XXX; will blow things up as it uses Base rather than new -->
   <!-- incorrect target type for annotation on ctor -->
   <!-- two annotations on one ctor -->
   <!-- two of the same annotation on one ctor - error -->
   <!-- two of the same on one using pattern spec  - lint -->
   
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method - simple source weaving">
        <compile files="Base.java,Colored.java,AtMethod1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored method invocation at call(void Base.m1())"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method - simple binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="AtMethod1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored method invocation at call(void Base.m1())"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>   

   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @constructor - simple source weaving">
        <compile files="Base.java,Colored.java,AtCtor1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored constructor invocation at call(Base(int))"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @constructor - simple binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="AtCtor1.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored constructor invocation at call(Base(int))"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>   
   

  <!-- These tests verify both @method and @ctor behavior - they are so similar it is OK to have them together... -->
  
  <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - wrong target - source weaving">
        <compile files="Base.java,Colored.java,WrongTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
           <message kind="error" line="8"  text="The annotation @MethodColoring is disallowed for this location"/>
           <message kind="error" line="9"  text="The annotation @TypeColoring is disallowed for this location"/>
           <message kind="error" line="10"  text="The annotation @MethodColoring is disallowed for this location"/>
           <message kind="error" line="11" text="The annotation @TypeColoring is disallowed for this location"/>
        </compile>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - right target - source weaving">
        <compile files="Base.java,Colored.java,RightTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored ctor call at call(Base(int))"/>
          <line text="Colored method call at call(void Base.m1())"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - right target - binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="RightTarget.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties"/>
        <run class="Base">
          <stderr>
          <line text="Colored ctor call at call(Base(int))"/>
          <line text="Colored method call at call(void Base.m1())"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test> 
   
<!-- check @method/@ctor/@field recursively applying, can only happen if a pattern for one of them includes an annotation -->
   
   
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - two the same on one - source weaving">
        <compile files="Base.java,Colored.java,TwoOnOneMember.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" text="void Base.m1() - already has an annotation of type Colored"/>
          <message kind="warning" text="void Base.&lt;init&gt;(int) - already has an annotation of type Colored"/>
        </compile>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - two the same on one - binary weaving">
        <weave classesFiles="Base.java,Colored.java" aspectsFiles="TwoOnOneMember.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
          <message kind="warning" text="void Base.m1() - already has an annotation of type Colored"/>
          <message kind="warning" text="void Base.&lt;init&gt;(int) - already has an annotation of type Colored"/>
        </weave>
   </ajc-test> 
   
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - two different on one - source weaving">
        <compile files="Base.java,Colored.java,Fruit.java,TwoOnOneMember2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
        </compile>
        <run class="Base">
          <stderr>
          <line text="Colored ctor call at Base.java:11"/>
          <line text="Fruit ctor call at Base.java:11"/>
          <line text="Colored method call at Base.java:15"/>
          <line text="Fruit method call at Base.java:15"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test>
    
   <ajc-test dir="java5/annotations/declare/atmethodctor" title="declare @method @ctor - two different on one - binary weaving">
        <weave classesFiles="Base.java,Colored.java,Fruit.java" aspectsFiles="TwoOnOneMember2.aj" options="-1.5" xlintfile="ignoreTypeNotExposed.properties">
        </weave>
        <run class="Base">
          <stderr>
          <line text="Colored ctor call at Base.java:11"/>
          <line text="Fruit ctor call at Base.java:11"/>
          <line text="Colored method call at Base.java:15"/>
          <line text="Fruit method call at Base.java:15"/>
          <line text="m1() running"/>
          <line text="m2() running"/>
          <line text="m3() running"/>
          </stderr>
        </run>
   </ajc-test> 
   
   <ajc-test dir="java5/annotations/declare" title="declare all annotations on one class - source weaving">
      <compile files="DeathByAnnotations.aj" options="-1.5,-emacssym" xlintfile="ignoreTypeNotExposed.properties"/>
      <run class="p.q.DeathByAnnotations"/>
   </ajc-test>
   
   <!-- ======================================================================================= -->
   <!--               annotation binding with ITDs                                              -->
   <!-- ======================================================================================= -->

   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd method is annotated">
      <compile files="BindingWithAnnotatedItds1.aj" options="-1.5"/>
      <run class="BindingWithAnnotatedItds1">
        <stderr>
          <line text="Found apple at jp execution(int A.m()) (BindingWithAnnotatedItds1.aj:8)"/>
        </stderr>
      </run>
   </ajc-test>
   
   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd field is annotated">
      <compile files="BindingWithAnnotatedItds2.aj" options="-1.5"/>
      <run class="BindingWithAnnotatedItds2">
        <stderr>
          <line text="Found banana at jp set(int A.i) (BindingWithAnnotatedItds2.aj:16)"/>
          <line text="Found apple at jp set(String A.j) (BindingWithAnnotatedItds2.aj:17)"/>
          <line text="Found orange at jp set(int[] A.k) (BindingWithAnnotatedItds2.aj:18)"/>
        </stderr>
      </run>
   </ajc-test>

   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd ctor is annotated">
      <compile files="BindingWithAnnotatedItds3.aj" options="-1.5"/>
      <run class="BindingWithAnnotatedItds3">
        <stderr>
          <line text="Found pear at jp execution(A(String)) (BindingWithAnnotatedItds3.aj:8)"/>
          <line text="Found orange at jp execution(A(int)) (BindingWithAnnotatedItds3.aj:10)"/>
          <line text="Found tomato at jp execution(A(boolean)) (BindingWithAnnotatedItds3.aj:12)"/>
        </stderr>
      </run>
   </ajc-test>
   
   <!-- ======================================================================================= -->
   <!--              declare annotation targetting ITDs                                         --> 
   <!-- ======================================================================================= -->
   
   
   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd method is annotated via declare">
      <compile files="BindingWithDeclaredAnnotationItds1.aj" options="-1.5,-emacssym"/>
      <run class="BindingWithDeclaredAnnotationItds1">
        <stderr>
          <line text="Found orange at jp call(int A.m()) (BindingWithDeclaredAnnotationItds1.aj:16)"/>
          <line text="Found orange at jp execution(int A.m()) (BindingWithDeclaredAnnotationItds1.aj:8)"/>
          <line text="Found banana at jp call(int A.n()) (BindingWithDeclaredAnnotationItds1.aj:17)"/>
          <line text="Found banana at jp execution(int A.n()) (BindingWithDeclaredAnnotationItds1.aj:10)"/>
          <line text="Found tomato at jp call(int A.o()) (BindingWithDeclaredAnnotationItds1.aj:18)"/>
          <line text="Found tomato at jp execution(int A.o()) (BindingWithDeclaredAnnotationItds1.aj:12)"/>
        </stderr>
      </run>
   </ajc-test>
   
   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd field is annotated via declare">
      <compile files="BindingWithDeclaredAnnotationItds2.aj" options="-1.5,-emacssym"/>
      <run class="BindingWithDeclaredAnnotationItds2">
        <stderr>
          <line text="Found orange at jp set(int A.i) (BindingWithDeclaredAnnotationItds2.aj:16)"/>
		  <line text="Found banana at jp set(String A.j) (BindingWithDeclaredAnnotationItds2.aj:17)"/>
		  <line text="Found apple at jp set(boolean[] A.k) (BindingWithDeclaredAnnotationItds2.aj:18)"/>
        </stderr>
      </run>
   </ajc-test>
   
    <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd field is annotated multiple times via declare">
      <compile files="BindingWithDeclaredAnnotationItds3.aj" options="-1.5,-emacssym"/>
      <run class="BindingWithDeclaredAnnotationItds3">
        <stderr>
			<line text="Found fruit orange at jp set(int A.i) (BindingWithDeclaredAnnotationItds3.aj:13)"/>
			<line text="Found drink margarita at jp set(int A.i) (BindingWithDeclaredAnnotationItds3.aj:13)"/>
        </stderr>
      </run>
   </ajc-test>
   
   <ajc-test dir="java5/annotations/binding" title="simple binding annotation values where itd ctor is annotated via declare">
      <compile files="BindingWithDeclaredAnnotationItds4.aj" options="-1.5,-emacssym"/>
      <run class="BindingWithDeclaredAnnotationItds4">
        <stderr>
          <line text="Found pear at jp execution(A(String)) (BindingWithDeclaredAnnotationItds4.aj:8)"/>
		  <line text="Found orange at jp execution(A(int)) (BindingWithDeclaredAnnotationItds4.aj:10)"/>
		  <line text="Found tomato at jp execution(A(boolean)) (BindingWithDeclaredAnnotationItds4.aj:12)"/>
        </stderr>
      </run>
   </ajc-test>

   <!-- ============================================================== -->
    
    <ajc-test dir="options/aspectpath" title="dirs on aspectpath">
        <compile files="MyAspect.aj" options="-d out"/>
        <compile files="MyClass.java" options="-aspectpath out">
            <message kind="warning" line="3" text="a method"/>
        </compile>
    </ajc-test>

    <!-- ============================================================== -->
    <!--   Start of generics tests                                      -->
    <!-- ============================================================== -->

    <ajc-test dir="java5/generics" title="ITD with parameterized type" vm="1.5">
        <compile files="ITDReturningParameterizedType.aj" options="-1.5"/>
        <run class="ITDReturningParameterizedType"/>
    </ajc-test>
    
    <ajc-test dir="java5/annotations/binding/bugs" title="AtArgs causes a VerifyError: Unable to pop operand off an empty stack" vm="1.5">
        <compile files="Test3.java" options="-1.5"/>
        <run class="Test3"/>
    </ajc-test>
    
    <ajc-test dir="java5/generics/bugs/pr91267" title="NPE using generic methods in aspects 1" vm="1.5">
        <compile files="TestBug1.aj" options="-1.5"/>
        <run class="TestBug1"/>
    </ajc-test>
    
     <ajc-test dir="java5/generics/bugs/pr91267" title="NPE using generic methods in aspects 2" vm="1.5">
        <compile files="TestBug2.aj" options="-1.5"/>
        <run class="TestBug2"/>
    </ajc-test>
    
    <ajc-test dir="java5/generics/bugs" title="Generics problem with Set" vm="1.5">
      <compile files="PR91053.aj" options="-1.5"/>
      <run class="PR91053"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/bugs" title="Compilation error on generic member introduction" vm="1.5">
      <compile files="PR87282.aj" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/bugs" title="Parameterized types on introduced fields not correctly recognized" vm="1.5">
      <compile files="PR88606.aj" options="-1.5"/>
   </ajc-test>
 
   <ajc-test dir="bugs150" title="enum called Enum, annotation called Annotation, etc">
     <compile files="PR90827.aj" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="bugs150" title="Internal compiler error">
     <compile files="PR86832.aj" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="bugs150" title="Exploding compile time with if() statements in pointcut">
     <compile files="PR94086.aj" options="-1.5"/>
   </ajc-test>
   
   <!-- generic bugs -->
   
   <ajc-test dir="java5/generics/bugs" title="ITD method with generic arg">
     <compile files="PR97763.aj" options="-1.5"/>
     <run class="PR97763">
       <stderr>
         <line text="Number of entries=2"/>
       </stderr>
     </run>
   </ajc-test>

   <ajc-test dir="bugs150" title="NPE at ClassScope.java:660 when compiling generic class">
     <compile files="PR95993.java" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/bugs" title="Problems resolving type name inside generic class">
     <compile files="PR95992.java" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="bugs150" pr="100227" title="inner class with generic enclosing class">
     <compile files="pr100227.aj" options="-1.5"/>
     <run class="pr100227">
	     <stderr>
	    	 <line text="Outer.Inner.inner=2"/>
	    	 <line text="Outer.Inner.p() executing"/>
	    	 <line text="Generic_Outer.Inner.inner=4"/>
	    	 <line text="Generic_Outer.Inner.p() executing"/>
	     </stderr>
     </run>
   </ajc-test>
   
   <ajc-test dir="bugs150" pr="100260" title="methods inherited from a generic parent">
     <compile files="pr100260.aj" options="-1.5"/>
     <run class="pr100260"/>
   </ajc-test>
   
   <!-- end of generic bugs -->

   <!-- generic aspects -->
   
   <ajc-test dir="java5/generics/genericaspects" title="generic aspects - 1">
     <compile files="GenericAspect1.aj" options="-1.5"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/genericaspects" title="generic aspects - 2">
     <compile files="GenericAspect2.aj" options="-1.5">
       <message kind="error" line="9" text="can not extend"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/genericaspects" title="generic aspects - 3">
     <compile files="GenericAspect3.aj" options="-1.5"/>
     <run class="GenericAspect3">
      <stderr>
		<line text="A"/>
		<line text="B"/>
      </stderr>
     </run>
   </ajc-test>
   
   <!-- end of generic aspects -->
   
   <!-- generic ITDs -->
  
   <ajc-test dir="java5/generics/itds" title="ITDs on generic type">
     <compile files="Parse5.java" options="-1.5">
        <message kind="error" line="9"/>
        <message kind="error" line="11"/>
        <message kind="error" line="13"/>
        <message kind="error" line="15"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/itds" title="itd of non static member">
       <compile files="A.java" options="-1.5"/>
       <run class="A">
         <stderr>
           <line text="min(2,4)=>2"/>
           <line text="max(2,4)=>4"/>
         </stderr>
       </run>
   </ajc-test>
   
   <ajc-test dir="java5/generics/itds" title="itd of static member">
       <compile files="B.java" options="-1.5"/>
       <run class="B">
         <stderr>
           <line text="min(2,4)=>2"/>
           <line text="max(2,4)=>4"/>
         </stderr>
       </run>
   </ajc-test>
   
   <ajc-test dir="java5/generics/itds" title="itd using type parameter">
       <compile files="C.java" options="-1.5"/>
       <run class="C">
         <stderr>
           <line text="fillthisin..."/>
         </stderr>
       </run>
   </ajc-test>

   <ajc-test dir="java5/generics/itds" title="itd incorrectly using type parameter">
       <compile files="D.java" options="-1.5"/>
       <run class="D">
         <stderr>
           <line text="fillthisin..."/>
         </stderr>
       </run>
   </ajc-test>
   
   <ajc-test dir="java5/generics/itds" title="Parsing generic ITDs - 1">
     <compile files="Parse1.java" options="-1.5"/>
   </ajc-test>

   <ajc-test dir="java5/generics/itds" title="Parsing generic ITDs - 2">
     <compile files="Parse2.java" options="-1.5"/>
   </ajc-test>

   <ajc-test dir="java5/generics/itds" title="Parsing generic ITDs - 3">
     <compile files="Parse3.java" options="-1.5"/>
   </ajc-test>

   <ajc-test dir="java5/generics/itds" title="Parsing generic ITDs - 4">
     <compile files="Parse4.java" options="-1.5"/>
   </ajc-test>
   
   <!-- end of generic ITDs -->
   
   <!-- generic decps -->
   
   <ajc-test dir="java5/generics/decp" title="generic decp - simple">
     <compile files="Basic.aj" options="-1.5"/>
     <run class="Basic"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - implementing two variants #1">
     <compile files="Basic2.aj" options="-1.5">
        <message kind="error" line="11" text="Cannot declare parent I&lt;java.lang.Integer&gt; onto type Basic2 since it already has I&lt;java.lang.String&gt; in its hierarchy"/>
     </compile>
   </ajc-test>

   <ajc-test dir="java5/generics/decp" title="generic decp - implementing two variants #2">
     <compile files="Basic2b.aj" options="-1.5">
        <message kind="error" line="10" text="Cannot declare parent I&lt;java.lang.Integer&gt; onto type Basic2b since it already has I in its hierarchy"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - implementing two variants #3">
     <compile files="Basic2c.aj" options="-1.5">
        <message kind="error" line="10" text="Cannot declare parent I onto type Basic2c since it already has I&lt;java.lang.Double&gt; in its hierarchy"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - implementing two variants #4">
     <compile files="Basic2d.aj" options="-1.5"/>
   </ajc-test>

   <ajc-test dir="java5/generics/decp/binary" title="generic decp binary - implementing two variants #1">
     <weave classesFiles="Base1.java" aspectsFiles="Asp1.aj" options="-1.5,-showWeaveInfo">
        <message kind="error" line="2" text="Cannot declare parent I&lt;java.lang.Integer&gt; onto type Base1 since it already has I&lt;java.lang.String&gt; in its hierarchy"/>
     </weave>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp/binary" title="generic decp binary - implementing two variants #2">
     <weave classesFiles="Base2.java" aspectsFiles="Asp2.aj" options="-1.5,-showWeaveInfo">
        <message kind="error" line="2" text="Cannot declare parent I&lt;java.lang.Integer&gt; onto type Base2 since it already has I in its hierarchy"/>
     </weave>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp/binary" title="generic decp binary - implementing two variants #3">
     <weave classesFiles="Base3.java" aspectsFiles="Asp3.aj" options="-1.5,-showWeaveInfo">
        <message kind="error" line="2" text="Cannot declare parent I onto type Base3 since it already has I&lt;java.lang.Double&gt; in its hierarchy"/>
     </weave>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp/binary" title="generic decp binary - implementing two variants #4">
     <weave classesFiles="Base4.java" aspectsFiles="Asp4.aj" options="-1.5,-showWeaveInfo"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - incorrect number of type parameters">
     <compile files="Basic3.aj" options="-1.5"/>
     <run class="Basic3"/>
   </ajc-test>

   <ajc-test dir="java5/generics/decp" title="generic decp - incorrect number of type parameters">
     <compile files="Basic3.aj" options="-1.5">
       <message kind="error" line="10" text="Wrong number of type arguments; Type I requires 1"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - specifying bounds">
     <compile files="Basic4.aj" options="-1.5"/>
     <run class="Basic4"/>
   </ajc-test>
   
   <ajc-test dir="java5/generics/decp" title="generic decp - specifying bounds but breaking them">
     <compile files="Basic5.aj" options="-1.5">
       <message kind="error" line="7" text="Type String does not meet the specification for type parameter 1 in generic type I&lt;T extends Number&gt;"/>
     </compile>
   </ajc-test>
     
   <ajc-test dir="java5/generics/decp" title="generic decp - with parameterized on the target">
     <compile files="Basic6.aj" options="-1.5,-showWeaveInfo">
       <message kind="weave" text="Extending interface set for type 'Basic6' (Basic6.aj) to include 'K&lt;java.lang.Integer&gt;' (Basic6.aj)"/>
     </compile>
     <run class="Basic6"/>
   </ajc-test>

   <!-- end of generic decps -->
   
   <!-- generics and  pointcuts -->

   <ajc-test dir="java5/generics/pointcuts" title="handler pcd and generics / type vars">
     <compile files="GenericInterface.java,HandlerPointcutTests.aj" options="-1.5">
         <message kind="error" line="4" text="Syntax error on token"/>
         <message kind="error" line="8" text="a parameterized type pattern may not be used in a handler pointcut expression"/>
         <message kind="warning" line="8" text="no match for this type name: T"/>
         <message kind="error" line="11" text="a parameterized type pattern may not be used in a handler pointcut expression"/>
     </compile>
   </ajc-test>

   <ajc-test dir="java5/generics/pointcuts" title="pointcuts that dont allow type vars">
     <compile files="PointcutsThatDontAllowTypeVars.aj" options="-1.5">
         <message kind="error" line="3" text="Syntax error on token"/>
         <message kind="error" line="5" text="Syntax error on token"/>
         <message kind="error" line="7" text="Syntax error on token"/>
         <message kind="error" line="9" text="Syntax error on token"/>
         <message kind="error" line="11" text="Syntax error on token"/>
         <message kind="error" line="13" text="Syntax error on token"/>
         <message kind="error" line="15" text="Syntax error on token"/>
         <message kind="error" line="17" text="Syntax error on token"/>
         <message kind="error" line="19" text="Syntax error on token"/>
         <message kind="error" line="21" text="Syntax error on token"/>
         <message kind="error" line="23" text="Syntax error on token"/>
         <message kind="error" line="25" text="Syntax error on token"/>
         <message kind="error" line="27" text="Syntax error on token"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="annotation pcds with parameterized types">
     <compile files="ParameterizedTypesInAtPCDs.aj" options="-1.5">
         <message kind="error" line="3" text="Syntax error on token"/>
         <message kind="error" line="5" text="Syntax error on token"/>
         <message kind="error" line="7" text="Syntax error on token"/>
         <message kind="error" line="9" text="Syntax error on token"/>
         <message kind="error" line="11" text="Syntax error on token"/>
         <message kind="error" line="13" text="Syntax error on token"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="annotation patterns with parameterized types">
     <compile files="ParameterizedTypesInAnnotationPatterns.aj" options="-1.5">
         <message kind="error" line="5" text="is not an annotation type"/>
         <message kind="error" line="7" text="is not an annotation type"/>
     </compile>
   </ajc-test>
   
    <ajc-test dir="java5/generics/pointcuts" title="staticinitialization and parameterized types">
     <compile files="GenericInterface.java,GenericImplementingClass.java,StaticInitializationWithParameterizedTypes.aj" options="-1.5">
         <message kind="error" line="4" text="no static initialization join points for parameterized types, use generic or raw type instead"/>
         <message kind="error" line="9" text="no static initialization join points for parameterized types, use generic or raw type instead"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="staticinitialization and parameterized type matching">
     <compile files="GenericInterface.java,GenericImplementingClass.java,ConcreteImplementingClass.java,ConcreteExtendingClass.java,StaticInitializationWithParameterizedTypesMatching.aj" options="-1.5">
         <message kind="warning" line="1" text="clinit(GenericInterface&lt;Double&gt;+)"/>
         <message kind="warning" line="3" text="clinit(GenericInterface&lt;Double&gt;+)"/>
         <message kind="warning" line="3" text="clinit(GenericImplementingClass&lt;Double&gt;+)"/>
         <message kind="warning" line="15" text="Type java.lang.String does not meet the specification for type parameter 1 (N extends java.lang.Number) in generic type GenericInterface"/>
         <message kind="warning" line="19" text="Type pattern does not match because the wrong number of type parameters are specified: Type GenericInterface requires 1 parameter(s)"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="staticinitialization with generic types">
     <compile files="GenericInterface.java,GenericImplementingClass.java,StaticInitializationWithGenericTypes.aj" options="-1.5">
         <message kind="warning" line="1" text="one generic param, correct bounds"/>
         <message kind="warning" line="1" text="doesn't matter what type variable name you use"/>
         <message kind="warning" line="1" text="works with classes too"/>
         <message kind="warning" line="4" text="Type T does not meet the specification for type parameter 1 (N extends java.lang.Number) in generic type GenericInterface"/>
         <message kind="warning" line="20" text="Type pattern does not match because the wrong number of type parameters are specified: Type GenericImplementingClass requires 1 parameter(s)"/>
         <message kind="warning" line="24" text="Type N extends java.lang.Name &amp; java.lang.Comparable does not meet the specification for type parameter 1 (N extends java.lang.Number) in generic type GenericImplementingClass"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="staticinitialization with generic types - advanced">
     <compile files="StaticInitializationWithGenericTypesAdvanced.aj" options="-1.5">
         <message kind="warning" line="76" text="simple match"/>
         <message kind="warning" line="76" text="matches since R and R extends Object are equivalent"/>
         <message kind="warning" line="63" text="raw type should match"/>
         <message kind="warning" line="63" text="matches all bounds"/>
         <message kind="warning" line="63" text="still matches with interfaces specified in a different order"/>
         <message kind="warning" line="69" text="matches with type variable inter-dependencies"/>
         <message kind="warning" line="76" text="matches any generic type with one unbound type var"/>
         <message kind="warning" line="82" text="any generic type with one type var bound to Number or subtype"/>
         <message kind="warning" line="63" text="matches a generic type with any upper bound and i/f bounds"/>
         <message kind="warning" line="76" text="matches a generic type with any upper bound and i/f bounds"/>
         <message kind="warning" line="82" text="matches a generic type with any upper bound and i/f bounds"/>
     </compile>
   </ajc-test>
   
   
   <ajc-test dir="java5/generics/pointcuts" title="execution pcd with raw type matching">
     <compile files="GenericInterface.java,ConcreteImplementingClass.java,GenericImplementingClass.java,RawTypeMatching.aj" options="-1.5">
         <message kind="warning" line="4" text="execution(* GenericInterface.*(..))"/>
         <message kind="warning" line="5" text="execution(* GenericInterface.*(..))"/>
     </compile>
   </ajc-test>
   
   <ajc-test dir="java5/generics/pointcuts" title="execution pcd with raw signature matching">
     <compile files="GenericInterface.java,ConcreteImplementingClass.java,GenericImplementingClass.java,RawSignatureMatching.aj" options="-1.5">
         <message kind="warning" line="4" text="execution(* GenericInterface.asInt(Number))"/>
         <message kind="warning" line="5" text="execution(* GenericInterface.asInt(Number))"/>
     </compile>
   </ajc-test>

   <ajc-test dir="java5/generics/pointcuts" title="execution pcd with generic declaring type and erased parameter types">
     <compile files="GenericInterface.java,ConcreteImplementingClass.java,GenericImplementingClass.java,GenericDeclaringTypeWithParameterErasure.aj" options="-1.5">
     </compile>
   </ajc-test>

   <ajc-test dir="java5/generics/pointcuts" title="execution pcd with generic signature matching">
     <compile files="GenericInterface.java,ConcreteImplementingClass.java,GenericImplementingClass.java,GenericSignatureMatching.aj" options="-1.5">
         <message kind="warning" line="4" text="execution&lt;T&gt;(* GenericInterface&lt;T extends Number&gt;.asInt(T))"/>
         <message kind="warning" line="5" text="execution&lt;T&gt;(* GenericInterface&lt;T extends Number&gt;.asInt(T))"/>
     </compile>
   </ajc-test>
   <!-- end of generics and pointcuts tests -->
   
   <!-- ============================================================== -->
   <!--     End of generics tests                                      -->
   <!-- ============================================================== -->
   
   <ajc-test dir="bugs150/pr98901" title="public method with declare @method">
     <compile files="Case01.aj" options="-1.5 -Xlint:error"/>
     <run class="B01">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
   <ajc-test dir="bugs150/pr98901" title="public method on the aspect that declares @method on it">
     <compile files="Case02.aj" options="-1.5 -Xlint:error"/>
     <run class="B02">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
   <ajc-test dir="bugs150/pr98901" title="public annotated method">
     <compile files="Case03.aj" options="-1.5 -Xlint:error"/>
     <run class="B03">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public ITD method with declare @method">
     <compile files="Case04.aj" options="-1.5 -Xlint:error"/>
     <run class="B04">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public annotated ITD method">
     <compile files="Case05.aj" options="-1.5 -Xlint:error"/>
     <run class="B05">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public ITD-on-itself method with declare @method">
     <compile files="Case06.aj" options="-1.5 -Xlint:error"/>
     <run class="B06">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public annotated ITD-on-itself method">
     <compile files="Case07.aj" options="-1.5 -Xlint:error"/>
     <run class="B07">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public method on an Interface with declare @method">
     <compile files="Case08.aj" options="-1.5 -Xlint:error"/>
     <run class="B08">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public annotated method on an Interface">
     <compile files="Case09.aj" options="-1.5 -Xlint:error"/>
     <run class="B09">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public ITD method onto an Interface with declare @method">
     <compile files="Case10.aj" options="-1.5 -Xlint:error"/>
     <run class="B10">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public annotated ITD method onto an Interface">
     <compile files="Case11.aj" options="-1.5 -Xlint:error"/>
     <run class="B11">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract method with declare @method">
     <compile files="Case12.aj" options="-1.5 -Xlint:error"/>
     <run class="B12">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public abstract method on the aspect that declares @method on it">
     <compile files="Case13.aj" options="-1.5 -Xlint:error"/>
     <run class="B13">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract annotated method">
     <compile files="Case14.aj" options="-1.5 -Xlint:error"/>
     <run class="B14">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract ITD method with declare @method">
     <compile files="Case15.aj" options="-1.5 -Xlint:error"/>
     <run class="B15">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public abstract annotated ITD method">
     <compile files="Case16.aj" options="-1.5 -Xlint:error"/>
     <run class="B16">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract ITD-on-itself method with declare @method">
     <compile files="Case17.aj" options="-1.5 -Xlint:error"/>
     <run class="B17">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract annotated ITD-on-itself method">
     <compile files="Case18.aj" options="-1.5 -Xlint:error"/>
     <run class="B18">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract method on an Interface with declare @method">
     <compile files="Case19.aj" options="-1.5 -Xlint:error"/>
     <run class="B19">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public abstract annotated method on an Interface">
     <compile files="Case20.aj" options="-1.5 -Xlint:error"/>
     <run class="B20">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract ITD method onto an Interface with declare @method">
     <compile files="Case21.aj" options="-1.5 -Xlint:error"/>
     <run class="B21">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public abstract annotated ITD method onto an Interface">
     <compile files="Case22.aj" options="-1.5 -Xlint:error"/>
     <run class="B22">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public field with declare @field">
     <compile files="Case23.aj" options="-1.5 -Xlint:error"/>
     <run class="B23">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
  

<ajc-test dir="bugs150/pr98901" title="public field on the aspect that declares @field on it">
     <compile files="Case24.aj" options="-1.5 -Xlint:error"/>
     <run class="B24">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public annotated field">
     <compile files="Case25.aj" options="-1.5 -Xlint:error"/>
     <run class="B25">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public ITD field with declare @field">
     <compile files="Case26.aj" options="-1.5 -Xlint:error"/>
     <run class="B26">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>

<ajc-test dir="bugs150/pr98901" title="public annotated ITD field">
     <compile files="Case27.aj" options="-1.5 -Xlint:error"/>
     <run class="B27">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public ITD-on-itself field with declare @field">
     <compile files="Case28.aj" options="-1.5 -Xlint:error"/>
     <run class="B28">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
<ajc-test dir="bugs150/pr98901" title="public annotated ITD-on-itself field">
     <compile files="Case29.aj" options="-1.5 -Xlint:error"/>
     <run class="B29">
         <stdout>
           <line text="@anInterface()"/>
         </stdout>
       </run>
   </ajc-test>
   
</suite>