blob: 1c19e6e9c913dddd91cc524ffc095fb020e850cd (
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
|
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd">
<!-- ../ path when running, ../../ when editing? -->
<!--
This is just like sandbox-test.xml except that it is
reserved for code that uses the AspectJ API's because
it assumes the build has created the target library,
../aj-build/dist/tools/lib/aspectjtools.jar
and that we run from a peer directory of this one.
-->
<suite>
<ajc-test dir="api-clients" title="api-ajde-modelWalker"
comment="BROKEN - function unvalidated, only that it compiles and runs">
<compile files="org/aspectj/samples/JoinPointCollector.java"
classpath="../../../aj-build/dist/tools/lib/aspectjtools.jar"/>
<run class="org/aspectj/samples/JoinPointCollector"
options="-help"/>
</ajc-test>
<ajc-test dir="api-clients" title="api-asm-listAffectedFiles"
comment="function unvalidated; note run paths are relative to harness cwd">
<compile files="org/aspectj/samples/AffectedFilesReporter.java"
classpath="../../../aj-build/dist/tools/lib/aspectjtools.jar"/>
<run class="org/aspectj/samples/AffectedFilesReporter"
outStreamIsError="true"
options="-emacssym,@../aj-build/dist/docs/doc/examples/tracing/notrace.lst"/>
<run class="org/aspectj/samples/AffectedFilesReporter"
options="-emacssym,@../aj-build/dist/docs/doc/examples/tracing/tracev3.lst"/>
</ajc-test>
</suite>
|