blob: 55278a25e17594451f95ee534820779f8bcde0d9 (
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">
<!-- contains valid tests that the compiler has never passed -->
<suite>
<ajc-test dir="bugs/options/classpath"
pr="41170"
title="combine classpath on command line and in .lst file">
<compile options="-verbose" argfiles="classpathTest.lst"/>
<run class="Client"/>
</ajc-test>
<ajc-test dir="bugs/interfaceLibrary"
pr="41175"
title="exception clause for aspect-declared interface methods - positive binary">
<compile files="Client.java" aspectpath="lib.jar"/>
<run class="Client"/>
</ajc-test>
<ajc-test dir="bugs/interfaceLibrary"
pr="41175"
title="exception clause for aspect-declared interface methods - negative binary">
<compile files="ClientCE.java" aspectpath="lib.jar">
<message kind="error" file="ClientCE.java" line="5"/>
</compile>
</ajc-test>
<ajc-test dir="bugs/interfaceLibrary"
pr="41175"
title="exception clause for aspect-declared class methods - positive binary">
<compile files="ClassClient.java" aspectpath="libClass.jar"/>
<run class="Client"/>
</ajc-test>
<ajc-test dir="bugs/interfaceLibrary"
pr="41175"
title="exception clause for aspect-declared class methods - negative binary">
<compile files="ClassClientCE.java" aspectpath="libClass.jar">
<message kind="error" file="ClassClientCE.java" line="5"/>
</compile>
</ajc-test>
</suite>
|