Skip to content
Snippets Groups Projects
Commit dbeb289e authored by felmer's avatar felmer
Browse files

BIS-142 fix bug in target 'run-two-test-suites'.

SVN: 26563
parent e8c55148
No related branches found
No related tags found
No related merge requests found
...@@ -305,9 +305,10 @@ ...@@ -305,9 +305,10 @@
<!-- <!--
// Task for continuous integration server. // Task for continuous integration server.
--> -->
<target name="ci" depends="check-dictionary-syntax, run-two-test-suites, check-restrictions, check-dependencies, dist" description="Task for continuous integration server." /> <target name="ci" depends="check-dictionary-syntax, run-two-test-suites, check-dependencies, dist" description="Task for continuous integration server." />
<target name="run-two-test-suites"> <target name="run-two-test-suites">
<antcall target="compile-tests"/>
<delete dir="${output.test}" /> <delete dir="${output.test}" />
<antcall target="_run-testng"> <antcall target="_run-testng">
...@@ -326,6 +327,7 @@ ...@@ -326,6 +327,7 @@
<report format="noframes" todir="${output.test}" /> <report format="noframes" todir="${output.test}" />
</junitreport> </junitreport>
<fail if="tests.failed" message="At least one test failed." /> <fail if="tests.failed" message="At least one test failed." />
<antcall target="check-restrictions" />
</target> </target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment