From dbeb289efbd0aa556c3d3417923d9d20116bbe56 Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Mon, 10 Sep 2012 08:03:14 +0000
Subject: [PATCH] BIS-142 fix bug in target 'run-two-test-suites'.

SVN: 26563
---
 openbis/build/build.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/openbis/build/build.xml b/openbis/build/build.xml
index 89c490bf8d2..8a7bb49827a 100644
--- a/openbis/build/build.xml
+++ b/openbis/build/build.xml
@@ -305,9 +305,10 @@
   <!--
       // 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">
+    <antcall target="compile-tests"/>
   	<delete dir="${output.test}" />
   		
   	<antcall target="_run-testng">
@@ -326,6 +327,7 @@
   		<report format="noframes" todir="${output.test}" />
   	</junitreport>
   	<fail if="tests.failed" message="At least one test failed." />
+		<antcall target="check-restrictions" />
   </target>
 
 
-- 
GitLab