blob: 829e26973d71c731d610ca13974adc6e12b144fc (
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
|
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd">
<suite>
<!-- This is an open question. Is it better for aspect static initializers
to run before or after the instance is constructed???
-->
<ajc-test dir="new" pr="804"
title="aspect static initializers should run before instance constructed"
keywords="tofix">
<compile files="AspectStaticInit.java"/>
<run class="AspectStaticInit"/>
</ajc-test>
<ajc-test dir="new/PR862" pr="862"
title="import any inner from interface implementor"
keywords="purejava">
<compile files="pack/ImportInnerFromInterfaceImplementor.java">
<dir-changes added="pack.ImportInnerFromInterfaceImplementor"/>
</compile>
<run class="pack.ImportInnerFromInterfaceImplementor"/>
</ajc-test>
<ajc-test dir="new"
title="incompatible advice throws clause are a compile-time error"
keywords="from-resolved_10x">
<compile files="AdviceThrowsCf.java">
<message kind="error" line="70"/>
<message kind="error" line="74"/>
<message kind="error" line="76"/>
<message kind="error" line="78"/>
</compile>
</ajc-test>
<ajc-test dir="new"
title="can't apply around advice to the execution of around advice"
keywords="from-resolved_10x">
<compile files="CflowCycles.java"/>
<run class="CflowCycles"/>
</ajc-test>
<ajc-test dir="new" pr="660" title="illegal name binding in around cflow"
keywords="from-resolved_104">
<compile files="ArgsInCflowCf.java">
<message kind="error" line="19"/>
<message kind="error" line="29"/>
<message kind="error" line="35"/>
</compile>
</ajc-test>
</suite>
|