aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-06-02 06:43:30 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-06-02 06:43:30 +0200
commitcd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5 (patch)
tree16a1f13a752a8e7a5d9acf5f5b4f4302015e982d
parent3c92d18927e6375cc18d8f97ecdd1909d000ad30 (diff)
downloadlombok-cd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5.tar.gz
lombok-cd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5.tar.bz2
lombok-cd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5.zip
the new eclipse dietparse test suite written by philipp requires junit to be fired up with lombok as agent. Fixed that in the build script.
-rw-r--r--build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 266747ff..ac7c2c6c 100644
--- a/build.xml
+++ b/build.xml
@@ -256,8 +256,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
</copy>
</target>
- <target name="test" depends="-test-compile" unless="tests.skip" description="Runs the tests.">
+ <target name="test" depends="-test-compile, dist" unless="tests.skip" description="Runs the tests.">
<junit haltonfailure="yes" fork="on">
+ <jvmarg value="-javaagent:dist/lombok.jar" />
<formatter type="plain" usefile="false" unless="tests.quiet" />
<classpath refid="test.path" />
<classpath path="build/lombok" />