diff options
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> |