blob: 8aa734e3e769b01e2b7605539b2d3836b3f81793 (
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
|
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>
<suite>
<ajc-test dir="bugs188/485055" title="classcast">
<compile files="AspectWithConstant.aj" options="-1.5"/>
<run class="AspectWithConstant">
<stdout>
<line text="MAXS=hello"/>
<line text="@AspectWithConstant$Loggable()" vm="-18"/>
<line text="@AspectWithConstant.Loggable()" vm="19-"/>
</stdout></run>
</ajc-test>
<ajc-test dir="bugs188/484941" title="annotation discovery npe">
<compile files="Test2.java" options="-1.8 -XnoInline"/>
</ajc-test>
<ajc-test dir="bugs188/defaultMethods" title="default methods 1">
<compile files="Code.java" options="-1.8 -XnoInline"/>
<run class="Code">
<stdout>
<line text="a"/>
<line text="b"/>
</stdout>
</run>
</ajc-test>
<ajc-test dir="bugs188/defaultMethods" title="default methods 2">
<compile files="Code2.java" options="-1.8"/>
<run class="Code2">
<stdout>
<line text="a"/>
<line text="b"/>
</stdout>
</run>
</ajc-test>
<ajc-test dir="bugs188/478003" title="compile error">
<compile files="OrientDBKeyIO.java" options="-1.8"/>
</ajc-test>
</suite>
|