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