You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2012/04/11 12:32:29 UTC

svn commit: r1324687 - /ofbiz/trunk/build.xml

Author: jacopoc
Date: Wed Apr 11 10:32:28 2012
New Revision: 1324687

URL: http://svn.apache.org/viewvc?rev=1324687&view=rev
Log:
Fixed wrong variable name rom my last commit; thanks to Pierre Smits for the report.

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1324687&r1=1324686&r2=1324687&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Wed Apr 11 10:32:28 2012
@@ -951,7 +951,7 @@ under the License.
     <target name="run-test-suite" depends="build"
             description="Run a single test suite, syntax eg: ant run-test-suite -Dtest.component=mycomponent -Dtest.suiteName=mytests">
         <fail unless="test.component">test.component is a required parameter: -Dtest.component=componentname</fail>
-        <fail unless="test.case">test.suiteName is a required parameter: -Dtest.suiteName=testsuitename</fail>
+        <fail unless="test.suiteName">test.suiteName is a required parameter: -Dtest.suiteName=testsuitename</fail>
         <java jar="ofbiz.jar" fork="true" resultproperty="test.result">
             <jvmarg value="${memory.initial.param}"/>
             <jvmarg value="${memory.max.param}"/>