Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openj9
Path: blob/master/test/functional/OpenJ9_Jsr_292_API/playlist.xml
6000 views
1
<?xml version='1.0' encoding='UTF-8'?>
2
<!--
3
Copyright (c) 2017, 2021 IBM Corp. and others
4
5
This program and the accompanying materials are made available under
6
the terms of the Eclipse Public License 2.0 which accompanies this
7
distribution and is available at https://www.eclipse.org/legal/epl-2.0/
8
or the Apache License, Version 2.0 which accompanies this distribution and
9
is available at https://www.apache.org/licenses/LICENSE-2.0.
10
11
This Source Code may also be made available under the following
12
Secondary Licenses when the conditions for such availability set
13
forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
14
General Public License, version 2 with the GNU Classpath
15
Exception [1] and GNU General Public License, version 2 with the
16
OpenJDK Assembly Exception [2].
17
18
[1] https://www.gnu.org/software/classpath/license.html
19
[2] http://openjdk.java.net/legal/assembly-exception.html
20
21
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
22
-->
23
<playlist xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../TKG/playlist.xsd">
24
<!--
25
TODO: The following test cases specific to Lookup are temporarily excluded in Java 14
26
as there is no backward compatibility of these APIs since Java 14 due to the new changes
27
required at https://github.com/eclipse-openj9/openj9/issues/8571. These test cases here
28
(mainly used prior to OpenJ9) will be re-evaluated against the Java 14 Spec and copied
29
as a new version with modification to meet the new scenarios in Java 14.
30
-->
31
<test>
32
<testCaseName>openj9_jsr292Test</testCaseName>
33
<command>$(JAVA_COMMAND) $(JVM_OPTIONS) \
34
--add-modules mods.modulea,mods.moduleb,mods.modulec --module-path $(Q)$(TEST_RESROOT)$(D)mods$(Q) \
35
--add-opens=java.base/java.lang=ALL-UNNAMED \
36
-cp $(Q)$(TEST_RESROOT)$(D)openj9_jsr292test.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(LIB_DIR)$(D)asm-all.jar$(Q) \
37
org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) \
38
-testnames openj9_jsr292Test \
39
-groups $(TEST_GROUP) \
40
-excludegroups $(DEFAULT_EXCLUDE); \
41
$(TEST_STATUS)</command>
42
<levels>
43
<level>sanity</level>
44
</levels>
45
<groups>
46
<group>functional</group>
47
</groups>
48
<versions>
49
<version>11</version>
50
<version>13</version>
51
</versions>
52
</test>
53
<test>
54
<testCaseName>openj9_jsr292Test_JitCount0</testCaseName>
55
<variations>
56
<variation>-Xjit:count=0</variation>
57
</variations>
58
<command>$(JAVA_COMMAND) $(JVM_OPTIONS) \
59
--add-modules mods.modulea,mods.moduleb,mods.modulec --module-path $(Q)$(TEST_RESROOT)$(D)mods$(Q) \
60
--add-opens=java.base/java.lang=ALL-UNNAMED \
61
-cp $(Q)$(TEST_RESROOT)$(D)openj9_jsr292test.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(LIB_DIR)$(D)asm-all.jar$(Q) \
62
org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) \
63
-testnames openj9_jsr292Test \
64
-groups $(TEST_GROUP) \
65
-excludegroups $(DEFAULT_EXCLUDE); \
66
$(TEST_STATUS)</command>
67
<platformRequirements>^arch.arm</platformRequirements>
68
<levels>
69
<level>sanity</level>
70
</levels>
71
<groups>
72
<group>functional</group>
73
</groups>
74
<versions>
75
<version>11</version>
76
<version>13</version>
77
</versions>
78
<impls>
79
<impl>openj9</impl>
80
<impl>ibm</impl>
81
</impls>
82
</test>
83
</playlist>
84
85