Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openj9
Path: blob/master/test/functional/Valhalla/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
<test>
25
<testCaseName>ValueTypeTests</testCaseName>
26
<variations>
27
<variation>-Xgcpolicy:optthruput</variation>
28
<variation> -XX:ValueTypeFlatteningThreshold=99999 -Xgcpolicy:optthruput -XX:-EnableArrayFlattening</variation>
29
<variation>-Xgcpolicy:optthruput -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
30
<variation>-Xgcpolicy:gencon -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
31
<!-- Use -XX:-EnableArrayFlattening. testDefaultValueInTriangleArray asserts the fields of each element are not NULL,
32
which is not true as a FlatteningThreshold is set. -->
33
<variation>-Xgcpolicy:gencon -XX:ValueTypeFlatteningThreshold=12 -XX:-EnableArrayFlattening</variation>
34
<variation>-Xnocompressedrefs -Xgcpolicy:optthruput -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
35
<variation>-Xnocompressedrefs -Xgcpolicy:gencon -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
36
<variation>-Xnocompressedrefs -Xgcpolicy:gencon</variation>
37
</variations>
38
<command>$(JAVA_COMMAND) $(JVM_OPTIONS) \
39
-Xverify:none \
40
-Xint \
41
--add-opens java.base/jdk.internal.misc=ALL-UNNAMED \
42
-cp $(Q)$(LIB_DIR)$(D)asm.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)ValhallaTests.jar$(Q) \
43
org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames ValueTypeTests \
44
-groups $(TEST_GROUP) \
45
-excludegroups $(DEFAULT_EXCLUDE); \
46
$(TEST_STATUS)</command>
47
<levels>
48
<level>sanity</level>
49
</levels>
50
<groups>
51
<group>functional</group>
52
</groups>
53
<versions>
54
<version>Valhalla</version>
55
</versions>
56
<impls>
57
<impl>openj9</impl>
58
<impl>ibm</impl>
59
</impls>
60
</test>
61
<test>
62
<testCaseName>ValueTypeTestsJIT</testCaseName>
63
<disables>
64
<disable>
65
<comment>https://github.com/eclipse-openj9/openj9/pull/9392#issuecomment-661246648</comment>
66
<variation>-Xjit:count=0</variation>
67
</disable>
68
</disables>
69
<variations>
70
<variation>-Xjit:count=0</variation>
71
<variation>-Xjit:count=1,disableAsyncCompilation -Xgcpolicy:optthruput</variation>
72
<variation>-Xjit:count=1,disableAsyncCompilation -Xgcpolicy:optthruput -XX:ValueTypeFlatteningThreshold=99999</variation>
73
<variation>-Xjit:count=1,disableAsyncCompilation -Xgcpolicy:gencon -XX:ValueTypeFlatteningThreshold=99999</variation>
74
</variations>
75
<command>$(JAVA_COMMAND) $(JVM_OPTIONS) \
76
-Xverify:none \
77
--add-opens java.base/jdk.internal.misc=ALL-UNNAMED \
78
-cp $(Q)$(LIB_DIR)$(D)asm.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)ValhallaTests.jar$(Q) \
79
org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames ValueTypeTestsJIT \
80
-groups $(TEST_GROUP) \
81
-excludegroups $(DEFAULT_EXCLUDE); \
82
$(TEST_STATUS)</command>
83
<levels>
84
<level>sanity</level>
85
</levels>
86
<groups>
87
<group>functional</group>
88
</groups>
89
<versions>
90
<version>Valhalla</version>
91
</versions>
92
<impls>
93
<impl>openj9</impl>
94
<impl>ibm</impl>
95
</impls>
96
</test>
97
<test>
98
<testCaseName>ValueTypeUnsafeTests</testCaseName>
99
<variations>
100
<variation>-Xcompressedrefs -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
101
<variation>-Xnocompressedrefs -XX:ValueTypeFlatteningThreshold=99999 -XX:+EnableArrayFlattening</variation>
102
<variation>-Xcompressedrefs -XX:-EnableArrayFlattening</variation>
103
<variation>-Xnocompressedrefs -XX:-EnableArrayFlattening</variation>
104
</variations>
105
<command>$(JAVA_COMMAND) $(JVM_OPTIONS) \
106
-Xverify:none \
107
-Xint \
108
--add-opens java.base/jdk.internal.misc=ALL-UNNAMED \
109
-cp $(Q)$(LIB_DIR)$(D)asm.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)ValhallaTests.jar$(Q) \
110
org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames ValueTypeUnsafeTests \
111
-groups $(TEST_GROUP) \
112
-excludegroups $(DEFAULT_EXCLUDE); \
113
$(TEST_STATUS)</command>
114
<levels>
115
<level>sanity</level>
116
</levels>
117
<groups>
118
<group>functional</group>
119
</groups>
120
<versions>
121
<version>Valhalla</version>
122
</versions>
123
<impls>
124
<impl>openj9</impl>
125
<impl>ibm</impl>
126
</impls>
127
</test>
128
</playlist>
129
130