diff options
author | wei <> | 2006-04-14 11:23:56 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 11:23:56 +0000 |
commit | f6a5e7589396854e10e023c25237b47e512ff047 (patch) | |
tree | 2b313bb8b66869235ee06b9cae2af2f7645cf5c9 /build.xml | |
parent | 3d3f8d3832921f99daf8ce1953304763c2e76c62 (diff) |
Adding SQLMap unit tests. Allow sqlmap to use Prado's caching module to cache records.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -152,8 +152,7 @@ <echo>Preparing directory structure</echo> <delete dir="${reports.unit.dir}"/> <delete dir="${reports.codecoverage.dir}"/> - <mkdir dir="${reports.unit.dir}"/> - + <if> <equals arg1="${codecoverage}" arg2="true"/> <then> @@ -192,7 +191,8 @@ </phpunit2> <echo>Creating Unit Test Report</echo> - <phpunit2report infile="${reports.dir}/logfile.xml" format="frames" styledir="${reports.style.dir}" todir="${reports.unit.dir}"/> + <mkdir dir="${reports.unit.dir}"/> + <phpunit2report infile="${reports.dir}/logfile.xml" format="frames" styledir="${reports.style.dir}" todir="${reports.unit.dir}"/> <if> <equals arg1="${codecoverage}" arg2="true"/> |