diff --git a/authentication/build/build.xml b/authentication/build/build.xml
index ed11604939e395ba53ef3c14db816e19a3fc942a..746b71fd54615de8ba464173025fa6c06532c76e 100644
--- a/authentication/build/build.xml
+++ b/authentication/build/build.xml
@@ -1,9 +1,17 @@
 <project name="authentication" basedir="..">
-	<import file="../../build_resources/ant/build-common.xml" />
-	<project-classpath name="ecp" classes="${classes}" />
-	<property name="mainfolder" value="authentication" />
+    <import file="../../build_resources/ant/build-common.xml" />
+    <project-classpath name="ecp" classes="${classes}" />
+    <property name="mainfolder" value="authentication" />
 
-  <target name="ci" depends="build-common.ci, check-dependencies"/>
+    <target name="ci" depends="build-common.ci, check-dependencies" />
+
+    <!--
+	  // Runs the test suite 'tests.xml'.
+	  -->
+    <target name="run-tests" description="Runs the test suite 'tests.xml'.">
+        <antcall target="build-common.run-tests">
+            <param name="test.suite" value="tests.xml" />
+        </antcall>
+    </target>
 
-	
 </project>
\ No newline at end of file