Browse Source

Bug 153772 "Support stdout/stderr specifications for the ant compiler test step" (tests)

tags/post_pr_153572
mwebster 17 years ago
parent
commit
42f46b0604
1 changed files with 12 additions and 2 deletions
  1. 12
    2
      tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml

+ 12
- 2
tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml View File

@@ -524,13 +524,23 @@
<ajc-test dir="ltw" title="JDK14 LTW with XML" keywords="ltw">
<compile files="HelloWorld.java" options="-outjar hello.jar"/>
<compile files="ExceptionHandler.aj" options="-outxml -outjar handler.jar"/>
<ant file="ant.xml" target="JDK14 LTW with XML" verbose="true"/>
<ant file="ant.xml" target="JDK14 LTW with XML" verbose="true">
<stdout>
<line text="TraceFactory.instance="/>
<line text="Hello World!"/>
</stdout>
</ant>
</ajc-test>
<ajc-test dir="ltw" title="JDK14 LTW with ASPECTPATH" keywords="ltw">
<compile files="HelloWorld.java" options="-outjar hello.jar"/>
<compile files="ExceptionHandler.aj" options="-outjar handler.jar"/>
<ant file="ant.xml" target="JDK14 LTW with ASPECTPATH" verbose="true"/>
<ant file="ant.xml" target="JDK14 LTW with ASPECTPATH" verbose="true">
<stdout>
<line text="TraceFactory.instance="/>
<line text="Hello World!"/>
</stdout>
</ant>
</ajc-test>

Loading…
Cancel
Save