This is an automated email from the ASF dual-hosted git repository.
damjan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new f5cdefa498 Finish my previous commit, add a missing function to check
hamcrest.
f5cdefa498 is described below
commit f5cdefa4988c79d1ddfbf62cd09e58e597a05105
Author: Damjan Jovanovic <[email protected]>
AuthorDate: Tue Jan 17 20:57:43 2023 +0200
Finish my previous commit, add a missing function to check hamcrest.
Patch by: me
---
test/build.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/test/build.xml b/test/build.xml
index 9f73172286..f59027f629 100644
--- a/test/build.xml
+++ b/test/build.xml
@@ -52,13 +52,16 @@
</fileset>
<globmapper from="*" to="junit.jar" />
</copy>
+ <available file="lib/junit.jar" property="junit.jar.exists"/>
+ </target>
+
+ <target name="check.hamcrest">
<copy todir="lib" >
<fileset dir="${junit.home}" erroronmissingdir="false">
<include name="hamcrest*.jar" />
</fileset>
<globmapper from="*" to="hamcrest.jar" />
</copy>
- <available file="lib/junit.jar" property="junit.jar.exists"/>
<available file="lib/hamcrest.jar"
property="hamcrest.jar.exists"/>
</target>