Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/gc/hashcode/HashCodeTestC/HashCodeTestC.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/HashCodeTestC.
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 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.HashCodeTestC.HashCodeTestC
41
*/
42
43
package gc.hashcode.HashCodeTestC;
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.test.Stresser;
50
import nsk.share.gc.gp.GarbageUtils;
51
52
/**
53
* Test that verifies external hash codes. This class tests the scenario
54
* with compaction.
55
*/
56
public class HashCodeTestC extends GCTestBase {
57
58
59
/**
60
* Test external hash codes when a compaction have been performed.
61
*
62
* @return Success if all hash codes matches original hash codes
63
*/
64
@Override
65
public void run(){
66
Stresser stresser = new Stresser(runParams.getStressOptions());
67
stresser.start(0);
68
HCHelper hch = new HCHelper(512, 3584, runParams.getSeed(),
69
0.7, 10240);
70
71
hch.setupLists();
72
hch.clearList(HCHelper.EVAC_LIST_1);
73
GarbageUtils.eatMemory(stresser);
74
if (!stresser.continueExecution()) {
75
return;// we didn't trigger GC, nothing
76
}
77
boolean testResult = hch.verifyHashCodes();
78
hch.cleanupLists();
79
80
if(!testResult) {
81
throw new TestFailure("Some hash codes didn't match");
82
}
83
}
84
85
public static void main(String[] args) {
86
GC.runTest(new HashCodeTestC(), args);
87
}
88
89
}
90
91