aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2013-06-01 21:21:12 +0200
committerBananeweizen <bananeweizen@gmx.de>2013-06-01 21:21:28 +0200
commitfa7174789f57d5a804af6c2ff632749137bcaddc (patch)
treec07f8e90ea69df78e03468377803fc668c66d134
parentdd2ed583971afc4ebc283a9a9461ee143cda554f (diff)
downloadcgeo-fa7174789f57d5a804af6c2ff632749137bcaddc.zip
cgeo-fa7174789f57d5a804af6c2ff632749137bcaddc.tar.gz
cgeo-fa7174789f57d5a804af6c2ff632749137bcaddc.tar.bz2
cleanup: remove no longer used build target
-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 -->
<!--