diff options
author | mwebster <mwebster> | 2006-08-14 15:55:04 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-08-14 15:55:04 +0000 |
commit | 42f46b0604dde7fe289058149a8fbad93931b925 (patch) | |
tree | 8b7c983d83f661cd4c442662c5e2f92b4efc6953 /tests | |
parent | 41340ae6cb640bf77b6e68cce2ff71e5aa982a2b (diff) | |
download | aspectj-42f46b0604dde7fe289058149a8fbad93931b925.tar.gz aspectj-42f46b0604dde7fe289058149a8fbad93931b925.zip |
Bug 153772 "Support stdout/stderr specifications for the ant compiler test step" (tests)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml b/tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml index 27c0b64c3..abd117964 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ltw/ltw-tests.xml @@ -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>
\ No newline at end of file |