mirrored from https://www.bouncycastle.org/repositories/bc-lts-java
-
Notifications
You must be signed in to change notification settings - Fork 5
/
test21.xml
46 lines (36 loc) · 1.41 KB
/
test21.xml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<project name="Test21" default="test" basedir=".">
<description>
Java 21 tests
</description>
<!-- set global properties for this build -->
<property file="bc-build.user.properties" />
<property file="bc-build.properties" />
<property file="gradle.properties" />
<property environment="env"/>
<property name="target_jvm" value="${env.LTS_JDK21}"/>
<property name="src" location="src"/>
<property name="report.dir" location="build/artifacts/jdk21/reports"/>
<path id="project.classpath">
<pathelement location="${mail.jar.home}" />
<pathelement location="${activation.jar.home}" />
<pathelement location="${jmail.jar.home}" />
<pathelement location="${jactivation.jar.home}" />
<pathelement location="${junit.jar.home}" />
<pathelement location="${ldap.jar.home}" />
</path>
<condition property="cpu.intel">
<and>
<or>
<contains string="${os.arch}" substring="x86"/>
<contains string="${os.arch}" substring="amd"/>
</or>
<contains string="${os.arch}" substring="64"/>
</and>
</condition>
<condition property="cpu.arm">
<contains string="${os.arch}" substring="aarch64"/>
</condition>
<target name="test">
<ant antfile="jvm_tests.xml" dir="." inheritall="true" inheritrefs="true"/>
</target>
</project>