svn commit: r18000 - trunk/src/argouml-core-model-mdr/build.xml
Luis Sergio Oliveira <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: euluis
Date: 2010-02-14 07:59:06-0800
New Revision: 18000
Modified:
trunk/src/argouml-core-model-mdr/build.xml
Log:
make model-mdr automated test results visible by setting the dependency order correctly of tests target
Modified: trunk/src/argouml-core-model-mdr/build.xml
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model-mdr/build.xml?view=diff&pathrev=18000&r1=17999&r2=18000
==============================================================================
--- trunk/src/argouml-core-model-mdr/build.xml (original)
+++ trunk/src/argouml-core-model-mdr/build.xml 2010-02-14 07:59:06-0800
@@ -321,7 +321,8 @@
<!-- =================================================================== -->
<!-- Clean out the tests -->
<!-- =================================================================== -->
- <target name="junit-report-clean">
+ <target name="junit-report-clean"
+ depends="init">
<mkdir dir="${tests.reports}/junit/output"/>
<mkdir dir="${tests.reports}/junit/output/html"/>
<delete>
@@ -335,7 +336,8 @@
<!-- =================================================================== -->
<!-- Create the report -->
<!-- =================================================================== -->
- <target name="junit-report-create">
+ <target name="junit-report-create"
+ depends="init">
<junitreport todir="${tests.reports}/junit/output">
<fileset dir="${tests.reports}/junit/output">
<include name="TEST-*.xml"/>
@@ -372,7 +374,8 @@
</target>
<target name="tests"
- depends="tests-xml,junit-report-clean">
+ depends="junit-report-clean,tests-xml"
+ description="Run the automated tests and create reports.">
<antcall target="junit-report-create"/>
</target>
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2447432
To unsubscribe from this discussion, e-mail: [[email protected]].