Fix: bad path

This commit is contained in:
Regis Houssin 2011-09-17 09:25:55 +00:00
parent 84a6847c06
commit 6de7f627c2
2 changed files with 11 additions and 10 deletions

View File

@ -7,13 +7,7 @@
<!-- Create build directories -->
<mkdir dir="${basedir}/hudson/doxygen"/>
<mkdir dir="${basedir}/hudson/logs"/>
</target>
<!-- Run unit tests and generate junit.xml and clover.xml -->
<target name="phpunit">
<exec dir="${basedir}" executable="phpunit" failonerror="true">
<arg line="--configuration test/phpunit/hudson-phpunit.xml" />
</exec>
<mkdir dir="${basedir}/hudson/coverage"/>
</target>
<!-- Run pdepend, phpmd, phpcpd, phpcs, phpdoc and phploc in parallel -->
@ -74,6 +68,13 @@
<arg value="${basedir}/build/doxygen/hudson-doxygen.doxyfile"/>
</exec>
</target>
<!-- Run unit tests and generate junit.xml and clover.xml -->
<target name="phpunit">
<exec dir="${basedir}" executable="phpunit" failonerror="true">
<arg line="--configuration test/phpunit/hudson-phpunit.xml" />
</exec>
</target>
<target name="hudson" depends="clean,parallelTasks,phpunit"/>
</project>

View File

@ -13,11 +13,11 @@
</testsuite>
<logging>
<log type="coverage-html" target="build/coverage/" title="Dolibarr"
<log type="coverage-html" target="../../hudson/coverage/" title="Dolibarr"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
<log type="coverage-clover" target="../../hudson/logs/clover.xml"/>
<log type="junit" target="../../hudson/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>