Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestCC/HashCodeTestCC.java
40948 views
1
/*
2
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test
26
* @key stress randomness
27
*
28
* @summary converted from VM Testbase gc/hashcode/HashCodeTestCC.
29
* VM Testbase keywords: [gc, stress, stressopt, nonconcurrent, jrockit]
30
* VM Testbase readme:
31
* DESCRIPTION
32
* Test that verifies external hash codes. This class tests the scenario
33
* with double FullGC(compaction).
34
*
35
* COMMENTS
36
* This test was ported from JRockit test suite.
37
*
38
* @library /vmTestbase
39
* /test/lib
40
* @run main/othervm -XX:-UseGCOverheadLimit gc.hashcode.HashCodeTestCC.HashCodeTestCC
41
*/
42
43
package gc.hashcode.HashCodeTestCC;
44
45
import gc.hashcode.HCHelper;
46
import nsk.share.TestFailure;
47
import nsk.share.gc.GC;
48
import nsk.share.gc.GCTestBase;
49
import nsk.share.gc.gp.GarbageUtils;
50
import nsk.share.test.Stresser;
51
52
/**
53
* Test that verifies external hash codes. This class tests the scenario
54
* with double compaction.
55
*/
56
public class HashCodeTestCC extends GCTestBase {
57
58
59
/**
60
* Test external hash codes when two compactions have been performed.
61
*
62
* @return Success if all hash codes matches original hash codes
63
*/
64
@Override
65
public final void run() {
66
HCHelper hch = new HCHelper(512, 3584, runParams.getSeed(),
67
0.7, 10240);
68
69
hch.setupLists();
70
// Remove evac list 1 to free some space
71
hch.clearList(HCHelper.EVAC_LIST_1);
72
Stresser stresser = new Stresser(runParams.getStressOptions());
73
stresser.start(0);
74
GarbageUtils.eatMemory(stresser);
75
if (!stresser.continueExecution()) {
76
return;// we didn't trigger GC, nothing
77
}
78
79
// Remove evac list 2 to free some more space
80
hch.clearList(HCHelper.EVAC_LIST_2);
81
GarbageUtils.eatMemory(stresser);
82
if (!stresser.continueExecution()) {
83
return;// we didn't trigger GC, nothing
84
}
85
86
boolean testResult = hch.verifyHashCodes();
87
hch.cleanupLists();
88
89
if(!testResult) {
90
throw new TestFailure("Some hash codes didn't match");
91
}
92
}
93
94
public static void main(String[] args) {
95
GC.runTest(new HashCodeTestCC(), args);
96
}
97
}
98
99