Made smoketest optional
authordario
Mon, 18 May 2009 18:44:20 +0100
changeset 189 dec10768c3a4
parent 188 51cb6051c75d
child 190 b7d91e23d5bf
Made smoketest optional
common/build.xml
--- a/common/build.xml	Mon May 18 16:11:36 2009 +0100
+++ b/common/build.xml	Mon May 18 18:44:20 2009 +0100
@@ -180,7 +180,12 @@
     </if>
     
     <!-- EXEC SMOKE TEST -->
-    <runtarget target="sf-smoke-test"/>
+    <if>
+      <istrue value="${sf.spec.smoketest.enable}"/>
+      <then>
+        <runtarget target="sf-smoke-test"/>
+      </then>
+    </if>
     
   </target>