fix build file warning and added help for tests

pull/14/head
Tim Su 14 years ago
parent 2eab044057
commit 8568b95569

@ -17,3 +17,6 @@ signjar.passfile=/etc/todoroo/keypass
# Default API Keys
apikey.keyfile=/etc/todoroo/apikeys
# suppress ant warnings
build.sysclasspath=last

@ -28,4 +28,7 @@ source.dir=${out.dir}/source
test.runner=com.zutubi.android.junitreport.JUnitReportTestRunner
# reports output directory
reports.dir=reports
reports.dir=reports
# suppress ant warnings
build.sysclasspath=last

@ -64,6 +64,13 @@
-->
<setup />
<target name="help">
<echo>Astrid Unit Test Build. Available targets:</echo>
<echo> help: Displays this help.</echo>
<echo> run-tests: Run unit tests.</echo>
<echo> coverage: Run tests and dump emma coverage reports.</echo>
</target>
<target name="coverage" depends="-prepare-coverage-source">
<antcall target="android-coverage">
<param name="source.dir" value="bin/source" />

Loading…
Cancel
Save