aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2018-11-19 20:47:03 +0000
committerAndreas Beeker <kiwiwings@apache.org>2018-11-19 20:47:03 +0000
commit867bca06eec556faffc9965258a469a8fefa8798 (patch)
tree124030005ac0d210993d2f401ce510fdf13d5c9e /src
parent655c24dcb5ee809e30669efd92c11e28c50f0114 (diff)
downloadpoi-867bca06eec556faffc9965258a469a8fefa8798.tar.gz
poi-867bca06eec556faffc9965258a469a8fefa8798.zip
Try to workaround/ignore kept open files of JaCoCo ant task
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846945 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/integrationtest/build.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/integrationtest/build.xml b/src/integrationtest/build.xml
index 26bd57e108..a228a22374 100644
--- a/src/integrationtest/build.xml
+++ b/src/integrationtest/build.xml
@@ -82,7 +82,9 @@ Before running this, you should execute the "assemble" target in the main build.
<target name="runCompileTest" depends="init" description="Verify that we can compile most examples without including excelant or scratchpad jars">
<!-- clean out old stuff in build-dir -->
- <delete dir="${build}"/>
+ <delete dir="${build}" quiet="true" failonerror="false"/>
+ <!-- ... try again - on Windows, the JaCoCo ant task seems to keep files open and hence the lib directory can't be removed -->
+ <delete dir="${build}" quiet="true" failonerror="false"/>
<mkdir dir="${build}"/>
<!-- select latest built jar files without scratchpad.jar -->