diff options
| author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:43:30 +0200 |
|---|---|---|
| committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:43:30 +0200 |
| commit | cd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5 (patch) | |
| tree | 16a1f13a752a8e7a5d9acf5f5b4f4302015e982d | |
| parent | 3c92d18927e6375cc18d8f97ecdd1909d000ad30 (diff) | |
| download | lombok-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.xml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" /> |
