blob: 2e8a8b62f8e62dce2ba00876cf46e6fe50f13815 (
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
|
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>
<suite>
<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>
|