Package: libfastutil-java / 8.5.11+dfsg-1

test_classpath.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: putting paths to junit and hamcrest jars into build.xml
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2022-09-30

--- a/build.xml
+++ b/build.xml
@@ -217,7 +217,7 @@
 			debug="on"
 			deprecation="on"
 			optimize="on"
-			classpath="lib/junit-4.13.jar:lib"
+			classpath="/usr/share/java/junit4.jar"
 			destdir="${build}"
 			memoryMaximumSize="2G"
 			fork="yes"
@@ -274,8 +274,9 @@
 		<junit printsummary="yes" fork="yes" haltonfailure="off"  haltonerror="off">
 			<classpath location="${build}"/>
 			<classpath location="${src}"/>
-			<classpath location="lib/junit-4.13.jar"/>
-			<classpath location="lib/hamcrest-all-1.3.jar"/>
+			<classpath location="/usr/share/java/ant-junit.jar"/>
+			<classpath location="/usr/share/java/junit4.jar"/>
+			<classpath location="/usr/share/java/hamcrest-all.jar"/>
 			<jvmarg value="-Xmx3G" />
 
 			<assertions><enable/></assertions>