Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 5efa545

Browse files
committedApr 14, 2020
8242312: use reproducible random in hotspot gc tests
Reviewed-by: kbarrett, tschatzl
1 parent 1ad4834 commit 5efa545

File tree

50 files changed

+259
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+259
-180
lines changed
 

‎test/hotspot/jtreg/gc/TestSoftReferencesBehaviorOnOOME.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,7 +25,7 @@
2525

2626
/**
2727
* @test TestSoftReferencesBehaviorOnOOME
28-
* @key gc
28+
* @key gc randomness
2929
* @summary Tests that all SoftReferences has been cleared at time of OOM.
3030
* @requires vm.gc != "Z"
3131
* @library /test/lib

‎test/hotspot/jtreg/gc/epsilon/TestByteArrays.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@
2525

2626
/**
2727
* @test TestByteArrays
28-
* @key gc
28+
* @key gc randomness
2929
* @requires vm.gc.Epsilon & !vm.graal.enabled
3030
* @summary Epsilon is able to allocate arrays, and does not corrupt their state
31+
* @library /test/lib
3132
*
3233
* @run main/othervm -Xmx1g -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
3334
* @run main/othervm -Xmx1g -Xint -XX:+UseTLAB -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC gc.epsilon.TestByteArrays
@@ -43,16 +44,15 @@
4344
*/
4445

4546
import java.util.Random;
47+
import jdk.test.lib.Utils;
4648

4749
public class TestByteArrays {
48-
49-
static long SEED = Long.getLong("seed", System.nanoTime());
5050
static int COUNT = Integer.getInteger("count", 3000); // ~500 MB allocation
5151

5252
static byte[][] arr;
5353

5454
public static void main(String[] args) throws Exception {
55-
Random r = new Random(SEED);
55+
Random r = Utils.getRandomInstance();
5656

5757
arr = new byte[COUNT * 100][];
5858
for (int c = 0; c < COUNT; c++) {
@@ -62,7 +62,7 @@ public static void main(String[] args) throws Exception {
6262
}
6363
}
6464

65-
r = new Random(SEED);
65+
r = new Random(Utils.SEED);
6666
for (int c = 0; c < COUNT; c++) {
6767
byte[] b = arr[c];
6868
if (b.length != (c * 100)) {

0 commit comments

Comments
 (0)
This repository has been archived.