diff options
author | Roel Spilker <r.spilker@gmail.com> | 2010-08-15 22:35:29 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 22:35:29 +0200 |
commit | e4845802a7d66415e330325dd434c0df4315c895 (patch) | |
tree | 029b394cc23f8544640a2f15095c8d9252eda397 /build.xml | |
parent | b0ec7d5389e7b2e7b1ddf7c743f0ff093d55c1f1 (diff) | |
download | lombok-e4845802a7d66415e330325dd434c0df4315c895.tar.gz lombok-e4845802a7d66415e330325dd434c0df4315c895.tar.bz2 lombok-e4845802a7d66415e330325dd434c0df4315c895.zip |
Updated buildscript to include tests and eclipse .project generation for the new bytecode tests in test/bytecode/src
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -171,6 +171,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <srcdir dir="experimental/src" /> <srcdir dir="test/transform/src" /> <srcdir dir="test/core/src" /> + <srcdir dir="test/bytecode/src" /> <conf name="build" sources="contrib" /> <conf name="test" sources="contrib" /> <settings> @@ -208,6 +209,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <classpath path="build/lombok" /> <src path="test/core/src" /> <src path="test/transform/src" /> + <src path="test/bytecode/src" /> </ivy:compile> <copy todir="build/tests"> <fileset dir="test/pretty/resource" /> @@ -228,6 +230,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <fileset dir="test/transform/src"> <include name="**/Test*.java" /> </fileset> + <fileset dir="test/bytecode/src"> + <include name="**/Test*.java" /> + </fileset> </batchtest> </junit> <echo level="info">All tests successful.</echo> |