Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openj9
Path: blob/master/test/functional/cmdLineTests/fastClassHashTable/fastClassHashTableTest.xml
6004 views
1
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
<!--
3
Copyright (c) 2016, 2020 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
24
<!DOCTYPE suite SYSTEM "cmdlinetester.dtd">
25
26
<suite id="SIGXFSZ Handling Tests" timeout="2400">
27
<variable name="CP" value="-cp $Q$$RESJAR$$Q$" />
28
<variable name="FASTTABLE" value="-XX:+FastClassHashTable" />
29
<variable name="NOTFASTTABLE" value="-XX:-FastClassHashTable" />
30
<variable name="TRACE" value="-Xtrace:print={j9vm.480-482}" />
31
32
<test id="Default">
33
<command>$EXE$ $TRACE$ $CP$ j9vm.test.fastclasshashtable.FastClassHashTableTest</command>
34
<output regex="yes" type="required">.*jvmPhaseChange occured (Phase = 2).*</output>
35
<output regex="yes" type="required">.*Enabled FastClassHashTable.*</output>
36
<output regex="yes" type="success">.* Freeing previous hashtable .* for FastClasshashTable.*</output>
37
<output regex="no" type="failure" caseSensitive="no" regex="no">core dump</output>
38
<output regex="no" type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
39
<output regex="no" type="failure" caseSensitive="no" regex="no">corrupt</output>
40
<output regex="no" type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
41
</test>
42
43
<test id="-XX:-FastClasshashTable -XX:+FastClasshashTable">
44
<command>$EXE$ $TRACE$ $CP$ $NOTFASTTABLE$ $FASTTABLE$ j9vm.test.fastclasshashtable.FastClassHashTableTest</command>
45
<output regex="yes" type="required">.*jvmPhaseChange occured (Phase = 2).*</output>
46
<output regex="yes" type="required">.*Enabled FastClassHashTable.*</output>
47
<output regex="yes" type="success">.* Freeing previous hashtable .* for FastClasshashTable.*</output>
48
<output regex="no" type="failure" caseSensitive="no" regex="no">core dump</output>
49
<output regex="no" type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
50
<output regex="no" type="failure" caseSensitive="no" regex="no">corrupt</output>
51
<output regex="no" type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
52
</test>
53
54
<test id="-XX:+FastClasshashTable -XX:-FastClasshashTable">
55
<command>$EXE$ $TRACE$ $CP$ $FASTTABLE$ $NOTFASTTABLE$ j9vm.test.fastclasshashtable.FastClassHashTableTest</command>
56
<output regex="yes" type="success">.*jvmPhaseChange occured (Phase = 2).*</output>
57
<output regex="yes" type="failure">.*Enabled FastClassHashTable.*</output>
58
<output regex="yes" type="failure">.* Freeing previous hashtable .* for FastClasshashTable.*</output>
59
<output regex="no" type="failure" caseSensitive="no" regex="no">core dump</output>
60
<output regex="no" type="failure" caseSensitive="no" regex="no">Unhandled Exception</output>
61
<output regex="no" type="failure" caseSensitive="no" regex="no">corrupt</output>
62
<output regex="no" type="failure" caseSensitive="yes" regex="no">Processing dump event</output>
63
</test>
64
65
</suite>
66
67