test/hotspot/jtreg/compiler/codecache/stress/CodeCacheStressRunner.java
author dtitov
Fri, 31 Aug 2018 11:56:43 -0700
changeset 51613 3835dc32de5e
parent 47216 71c04702a3d5
permissions -rw-r--r--
8209585: [Graal] vmTestbase/nsk/jvmti/scenarios/sampling tests fail with "Too small stack of resumed thread" Reviewed-by: sspitsyn, amenkov, cjplummer, jcbeyler
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28501
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     1
/*
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40059
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
28501
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     4
 *
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     8
 *
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    13
 * accompanied this code).
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    14
 *
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    18
 *
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    21
 * questions.
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    22
 */
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    23
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 30604
diff changeset
    24
package compiler.codecache.stress;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 30604
diff changeset
    25
45245
48fed68b35c1 8180793: move jdk.test.lib.wrappers.* to jdk.test.lib package
iignatyev
parents: 41705
diff changeset
    26
import jdk.test.lib.TimeLimitedRunner;
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 28728
diff changeset
    27
import jdk.test.lib.Utils;
28501
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    28
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    29
public class CodeCacheStressRunner {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    30
    private final Runnable action;
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    31
    public CodeCacheStressRunner(Runnable action) {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    32
        this.action = action;
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    33
    }
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    34
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    35
    protected final void runTest() {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    36
        Helper.startInfiniteLoopThread(action);
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    37
        try {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    38
            // adjust timeout and substract vm init and exit time
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    39
            long timeout = Utils.adjustTimeout(Utils.DEFAULT_TEST_TIMEOUT);
28728
0b2795366c28 8069125: compiler/codecache/stress tests timeout in nightlies
pchistyakov
parents: 28501
diff changeset
    40
            timeout *= 0.8;
28501
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    41
            new TimeLimitedRunner(timeout, 2.0d, this::test).call();
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    42
        } catch (Exception e) {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    43
            throw new Error("Exception occurred during test execution", e);
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    44
        }
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    45
    }
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    46
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    47
    private boolean test() {
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    48
        Helper.TestCase obj = Helper.TestCase.get();
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    49
        Helper.callMethod(obj.getCallable(), obj.expectedValue());
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    50
        return true;
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    51
    }
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    52
c9c359a66a15 8059551: JEP-JDK-8043304: Test task: stress tests
pchistyakov
parents:
diff changeset
    53
}