NIHVIVO-76 Take out the intentional failure in the acceptance tests.

This commit is contained in:
jeb228 2010-03-16 20:59:13 +00:00
parent c790aa60ea
commit 31ebff72fd

View file

@ -49,6 +49,10 @@
<!-- =================================
target: acceptance
Hudson (continuous integration)
uses this to run the acceptance
tests.
================================= -->
<target name="acceptance" description="--> Run the acceptance tests">
<property name="acceptance.properties.file"
@ -67,9 +71,9 @@
<arg value="run_acceptance_tests.rb" />
<arg value="${acceptance.properties.file}" />
</exec>
<fail message="Just testing to see what a broken build does." />
<exec executable="ruby" dir="${acceptance.script.directory}" failonerror="true">
<arg value="run_acceptance_tests.rb" />
<arg value="output_manager.rb" />
<arg value="${acceptance.properties.file}" />
</exec>
</target>