aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/build.xml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/build.xml b/tests/build.xml
index 3c64097..4dd3643 100644
--- a/tests/build.xml
+++ b/tests/build.xml
@@ -45,27 +45,6 @@
unless="sdk.dir"
/>
- <target name="run-acceptance-tests" depends="clean, debug, install" >
-
- <property name="log.file" value="acceptance_tests_standard_out.txt" />
- <!-- because we don't have control over the 'test' target (to check for passes an fails) this prints to standard out
- we capture standard out into a file and query this to see if we have any test failures, using this to pass/fail our task -->
- <record name="${log.file}" action="start" />
- <antcall target="test" />
- <record name="${log.file}" action="stop" />
-
- <loadfile property="tests.output" srcFile="${log.file}" />
-
- <echo>Checking for failures</echo>
- <fail message="Acceptance tests FAILED!!!" >
- <condition>
- <contains string="${tests.output}" substring="FAILURES" />
- </condition>
- </fail>
-
- <echo>Acceptance tests passed!</echo>
- </target>
-
<!-- extension targets. Uncomment the ones where you want to do custom work
in between standard targets -->
<!--