enabling data.integration tests in build files

This commit is contained in:
Steve Bohlen
2012-10-22 19:53:01 -04:00
parent 6cf4e2dd0f
commit 914e774701
2 changed files with 14 additions and 15 deletions

View File

@@ -116,10 +116,10 @@ Commandline Examples:
<property name="doc.sdk" value="false"/>
<!-- turn on all tests if test.full specified -->
<property name="test.full" value="false" />
<property name="test.integration.data" value="${test.full}" />
<property name="test.integration.ems" value="${test.full}" />
<property name="test.integration.nms" value="${test.full}" />
<property name="test.full" value="false" overwrite="false" />
<property name="test.integration.data" value="${test.full}" overwrite="false" />
<property name="test.integration.ems" value="${test.full}" overwrite="false" />
<property name="test.integration.nms" value="${test.full}" overwrite="false" />
<!--
the line below is for the ccnet build box - see target set-user-overrides for how to change this to your machine values if necessary
@@ -1400,9 +1400,9 @@ Commandline Examples:
</target>
<target name="set-build-namespaces-all">
<property name="build.allnamespaces" value="true"/>
<property name="test.integration.data" value="false" />
<property name="test.integration.ems" value="false" />
<property name="test.integration.nms" value="false" />
<property name="test.integration.data" value="false" overwrite="false" />
<property name="test.integration.ems" value="false" overwrite="false" />
<property name="test.integration.nms" value="false" overwrite="false" />
<property name="build-aop" value="true" />
<property name="build-data" value="true" />
<property name="build-services" value="true" />
@@ -1439,9 +1439,9 @@ Commandline Examples:
</fileset>
</target>
<target name="set-build-namespaces-release">
<property name="test.integration.data" value="false" />
<property name="test.integration.ems" value="false" />
<property name="test.integration.nms" value="false" />
<property name="test.integration.data" value="false" overwrite="false" />
<property name="test.integration.ems" value="false" overwrite="false" />
<property name="test.integration.nms" value="false" overwrite="false" />
<property name="build-aop" value="true"/>
<property name="build-data" value="true"/>
<property name="build-services" value="true"/>

View File

@@ -24,9 +24,9 @@
<sources failonempty="true">
<include name="**/*.cs" />
</sources>
<resources basedir="Resources">
<include name="**/*" />
</resources>
<resources prefix="Spring" dynamicprefix="true" failonempty="true">
<include name="**/*.xml" />
</resources>
<references basedir="${current.bin.dir}">
<include name="*.dll" />
<include name="System.Data.dll" if="${nant.settings.currentframework=='mono-2.0'}" />
@@ -43,7 +43,6 @@
</csc>
</target>
<target name="test" depends="build">
<!-- skipping running of tests for now -->
<!-- call target="common.run-tests" if="${test.integration.data}" / -->
<call target="common.run-tests" if="${test.integration.data}" />
</target>
</project>