diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/build-common.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/build/build-common.xml b/build/build-common.xml index 870ef9fff..e254ab608 100644 --- a/build/build-common.xml +++ b/build/build-common.xml @@ -99,23 +99,23 @@ <attribute name="suite"/> <sequential> <!-- showoutput="on" --> -<!-- <junit showoutput="on" fork="on" haltonfailure="on" haltonerror="on" printsummary="on" dir="../@{project}">--> -<!-- <classpath>--> -<!-- <pathelement path="../@{project}/${build.dir}"/>--> -<!-- <pathelement path="../@{project}/${test.build.dir}"/>--> -<!-- <path refid="@{path}"/>--> -<!-- </classpath>--> -<!-- <test name="@{suite}"/>--> -<!-- </junit>--> + <junit showoutput="on" fork="on" haltonfailure="on" haltonerror="on" printsummary="on" dir="../@{project}"> + <classpath> + <pathelement path="../@{project}/${build.dir}"/> + <pathelement path="../@{project}/${test.build.dir}"/> + <path refid="@{path}"/> + </classpath> + <test name="@{suite}"/> + </junit> <!-- TODO AV - using java to invoke JUnit since the junit task is hidding errors - don't know why --> - <java classname="@{suite}" fork="on" dir="../@{project}"> + <!--<java classname="@{suite}" fork="on" dir="../@{project}"> <jvmarg line=""/> <classpath> <pathelement path="../@{project}/${build.dir}"/> <pathelement path="../@{project}/${test.build.dir}"/> <path refid="@{path}"/> </classpath> - </java> + </java>--> </sequential> </macrodef> |