test/jdk/java/lang/management/MemoryMXBean/LowMemoryTest.java
author lkorinth
Wed, 13 Nov 2019 11:37:29 +0100
changeset 59053 ba6c248cae19
parent 51754 594919232b8f
permissions -rw-r--r--
8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector Reviewed-by: kbarrett, tschatzl, erikj, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
59053
ba6c248cae19 8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector
lkorinth
parents: 51754
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug     4530538
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Basic unit test of memory management testing:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *          1) setUsageThreshold() and getUsageThreshold()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *          2) test low memory detection on the old generation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @author  Mandy Chung
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
41759
873c7ad14bea 8158797: Test java/lang/management/MemoryMXBean/LowMemoryTest.java fails when GC is specified explicitly
akulyakh
parents: 35246
diff changeset
    32
 * @requires vm.gc == "null"
28527
38a80fae1b65 8062450: Timeout in LowMemoryTest.java
jbachorik
parents: 28245
diff changeset
    33
 * @requires vm.opt.ExplicitGCInvokesConcurrent != "true"
38a80fae1b65 8062450: Timeout in LowMemoryTest.java
jbachorik
parents: 28245
diff changeset
    34
 * @requires vm.opt.DisableExplicitGC != "true"
51754
594919232b8f 8210732: remove jdk.testlibrary.Utils
iignatyev
parents: 51687
diff changeset
    35
 * @library /test/lib
44423
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 41759
diff changeset
    36
 *
51754
594919232b8f 8210732: remove jdk.testlibrary.Utils
iignatyev
parents: 51687
diff changeset
    37
 * @build LowMemoryTest MemoryUtil RunUtil
50455
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    38
 * @build sun.hotspot.WhiteBox
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    39
 * @run driver ClassFileInstaller sun.hotspot.WhiteBox sun.hotspot.WhiteBox$WhiteBoxPermission
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    40
 * @run main/othervm/timeout=600 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. LowMemoryTest
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.lang.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.*;
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
    45
import java.util.concurrent.Phaser;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import javax.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import javax.management.openmbean.CompositeData;
51687
1e39953aaed8 8182404: remove jdk.testlibrary.JDKToolFinder and JDKToolLauncher
iignatyev
parents: 51675
diff changeset
    48
import jdk.test.lib.JDKToolFinder;
51675
b487c1e914d0 8210112: remove jdk.testlibrary.ProcessTools
iignatyev
parents: 50455
diff changeset
    49
import jdk.test.lib.process.ProcessTools;
51754
594919232b8f 8210732: remove jdk.testlibrary.Utils
iignatyev
parents: 51687
diff changeset
    50
import jdk.test.lib.Utils;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
50455
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    52
import sun.hotspot.code.Compiler;
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    53
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
public class LowMemoryTest {
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
    55
    private static final MemoryMXBean mm = ManagementFactory.getMemoryMXBean();
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
    56
    private static final List<MemoryPoolMXBean> pools = ManagementFactory.getMemoryPoolMXBeans();
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
    57
    private static final Phaser phaser = new Phaser(2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private static MemoryPoolMXBean mpool = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    private static boolean trace = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private static boolean testFailed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    private static final int NUM_TRIGGERS = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private static final int NUM_CHUNKS = 2;
25999
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
    63
    private static final int YOUNG_GEN_SIZE = 8 * 1024 * 1024;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private static long chunkSize;
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    65
    private static final String classMain = "LowMemoryTest$TestMain";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    67
    /**
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    68
     * Run the test multiple times with different GC versions.
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    69
     * First with default command line specified by the framework.
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    70
     * Then with GC versions specified by the test.
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    71
     */
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
    72
    public static void main(String a[]) throws Throwable {
25999
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
    73
        // Use a low young gen size to ensure that the
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
    74
        // allocated objects are put in the old gen.
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
    75
        final String nmFlag = "-Xmn" + YOUNG_GEN_SIZE;
26459
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    76
        // Using large pages will change the young gen size,
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    77
        // make sure we don't use them for this test.
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    78
        final String lpFlag = "-XX:-UseLargePages";
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    79
        // Prevent G1 from selecting a large heap region size,
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    80
        // since that would change the young gen size.
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
    81
        final String g1Flag = "-XX:G1HeapRegionSize=1m";
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    82
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    83
        // Runs the test collecting subprocess I/O while it's running.
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    84
        traceTest(classMain + ", -XX:+UseSerialGC", nmFlag, lpFlag, "-XX:+UseSerialGC");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    85
        traceTest(classMain + ", -XX:+UseParallelGC", nmFlag, lpFlag, "-XX:+UseParallelGC");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    86
        traceTest(classMain + ", -XX:+UseG1GC", nmFlag, lpFlag, "-XX:+UseG1GC", g1Flag);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    87
    }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    88
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    89
    /*
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    90
     * Creating command-line for running subprocess JVM:
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    91
     *
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    92
     * JVM command line is like:
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    93
     * {test_jdk}/bin/java {defaultopts} -cp {test.class.path} {testopts} main
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    94
     *
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    95
     * {defaultopts} are the default java options set by the framework.
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    96
     *
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    97
     * @param testOpts java options specified by the test.
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    98
     */
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
    99
    private static List<String> buildCommandLine(String... testOpts) {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   100
        List<String> opts = new ArrayList<>();
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   101
        opts.add(JDKToolFinder.getJDKTool("java"));
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   102
        opts.addAll(Arrays.asList(Utils.getTestJavaOpts()));
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   103
        opts.add("-cp");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   104
        opts.add(System.getProperty("test.class.path", "test.class.path"));
35246
05ced3076fd8 8145092: Use Unified Logging for the GC logging
david
parents: 32103
diff changeset
   105
        opts.add("-Xlog:gc*=debug");
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   106
        opts.addAll(Arrays.asList(testOpts));
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   107
        opts.add(classMain);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   108
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   109
        return opts;
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   110
    }
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   111
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   112
    /**
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   113
     * Runs LowMemoryTest$TestMain with the passed options and redirects subprocess
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   114
     * standard I/O to the current (parent) process. This provides a trace of what
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   115
     * happens in the subprocess while it is runnning (and before it terminates).
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   116
     *
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   117
     * @param prefixName the prefix string for redirected outputs
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   118
     * @param testOpts java options specified by the test.
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   119
     */
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   120
    private static void traceTest(String prefixName,
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   121
                                  String... testOpts)
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   122
                throws Throwable {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   123
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   124
        // Building command-line
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   125
        List<String> opts = buildCommandLine(testOpts);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   126
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   127
        // We activate all tracing in subprocess
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   128
        opts.add("trace");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   129
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   130
        // Launch separate JVM subprocess
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   131
        String[] optsArray = opts.toArray(new String[0]);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   132
        ProcessBuilder pb = new ProcessBuilder(optsArray);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   133
        System.out.println("\n========= Tracing of subprocess " + prefixName + " =========");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   134
        Process p = ProcessTools.startProcess(prefixName, pb);
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   135
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   136
        // Handling end of subprocess
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   137
        try {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   138
            int exitCode = p.waitFor();
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   139
            if (exitCode != 0) {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   140
                throw new RuntimeException(
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   141
                    "Subprocess unexpected exit value of [" + exitCode + "]. Expected 0.\n");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   142
            }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   143
        } catch (InterruptedException e) {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   144
            throw new RuntimeException("Parent process interrupted with exception : \n " + e + " :" );
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   145
        }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   146
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   147
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   148
     }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   149
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   150
    private static volatile boolean listenerInvoked = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    static class SensorListener implements NotificationListener {
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   152
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        public void handleNotification(Notification notif, Object handback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            String type = notif.getType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            if (type.equals(MemoryNotificationInfo.MEMORY_THRESHOLD_EXCEEDED) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                type.equals(MemoryNotificationInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                    MEMORY_COLLECTION_THRESHOLD_EXCEEDED)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                MemoryNotificationInfo minfo = MemoryNotificationInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    from((CompositeData) notif.getUserData());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                MemoryUtil.printMemoryNotificationInfo(minfo, type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                listenerInvoked = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    static class TestListener implements NotificationListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        private int triggers = 0;
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   170
        private final long[] count = new long[NUM_TRIGGERS * 2];
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   171
        private final long[] usedMemory = new long[NUM_TRIGGERS * 2];
28245
5560f8810064 8034263: Test java/lang/management/MemoryMXBean/LowMemoryTest.java fails intermittently
jbachorik
parents: 26459
diff changeset
   172
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   173
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        public void handleNotification(Notification notif, Object handback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            MemoryNotificationInfo minfo = MemoryNotificationInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                from((CompositeData) notif.getUserData());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            count[triggers] = minfo.getCount();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            usedMemory[triggers] = minfo.getUsage().getUsed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            triggers++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        public void checkResult() throws Exception {
29029
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   182
            if (!checkValue(triggers, NUM_TRIGGERS)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                throw new RuntimeException("Unexpected number of triggers = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                    triggers + " but expected to be " + NUM_TRIGGERS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            for (int i = 0; i < triggers; i++) {
29029
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   188
                if (!checkValue(count[i], i + 1)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                    throw new RuntimeException("Unexpected count of" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                        " notification #" + i +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                        " count = " + count[i] +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                        " but expected to be " + (i+1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                if (usedMemory[i] < newThreshold) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                    throw new RuntimeException("Used memory = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                        usedMemory[i] + " is less than the threshold = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                        newThreshold);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
29029
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   201
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   202
        private boolean checkValue(int value, int target) {
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   203
            return checkValue((long)value, target);
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   204
        }
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   205
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   206
        private boolean checkValue(long value, int target) {
59053
ba6c248cae19 8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector
lkorinth
parents: 51754
diff changeset
   207
            return value == target;
29029
433de2a38271 8069286: Unexpected count of notification in LowMemoryTest
jbachorik
parents: 28528
diff changeset
   208
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    private static long newThreshold;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   213
    private static class TestMain {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   214
        public static void main(String args[]) throws Exception {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   215
            if (args.length > 0 && args[0].equals("trace")) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   216
                trace = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   219
            // Find the Old generation which supports low memory detection
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   220
            ListIterator iter = pools.listIterator();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   221
            while (iter.hasNext()) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   222
                MemoryPoolMXBean p = (MemoryPoolMXBean) iter.next();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   223
                if (p.getType() == MemoryType.HEAP &&
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   224
                    p.isUsageThresholdSupported()) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   225
                    mpool = p;
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   226
                    if (trace) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   227
                        System.out.println("Selected memory pool for low memory " +
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   228
                            "detection.");
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   229
                        MemoryUtil.printMemoryPool(mpool);
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   230
                    }
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   231
                    break;
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   232
                }
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   233
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   235
            TestListener listener = new TestListener();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   236
            SensorListener l2 = new SensorListener();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   237
            NotificationEmitter emitter = (NotificationEmitter) mm;
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   238
            emitter.addNotificationListener(listener, null, null);
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   239
            emitter.addNotificationListener(l2, null, null);
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   240
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   241
            Thread allocator = new AllocatorThread();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   242
            Thread sweeper = new SweeperThread();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
26459
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   244
            // The chunk size needs to be larger than YOUNG_GEN_SIZE,
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   245
            // otherwise we will get intermittent failures when objects
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   246
            // end up in the young gen instead of the old gen.
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   247
            final long epsilon = 1024;
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   248
            chunkSize = YOUNG_GEN_SIZE + epsilon;
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   249
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   250
            MemoryUsage mu = mpool.getUsage();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   251
            newThreshold = mu.getUsed() + (chunkSize * NUM_CHUNKS);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
26459
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   253
            // Sanity check. Make sure the new threshold isn't too large.
25999
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
   254
            // Tweak the test if this fails.
26459
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   255
            final long headRoom = chunkSize * 2;
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   256
            final long max = mu.getMax();
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   257
            if (max != -1 && newThreshold > max - headRoom) {
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   258
                throw new RuntimeException("TEST FAILED: newThreshold: " + newThreshold +
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   259
                        " is too near the maximum old gen size: " + max +
fa5576f930e6 8057174: MemoryMXBean tests -- TEST FAILED: chunkSize: 6291456 is less than YOUNG_GEN_SIZE: 8388608
stefank
parents: 25999
diff changeset
   260
                        " used: " + mu.getUsed() + " headRoom: " + headRoom);
25999
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
   261
            }
1e494b91a5a5 8035939: java/lang/management/MemoryMXBean/MemoryManagement.java timed out on Linux-amd64
stefank
parents: 24366
diff changeset
   262
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   263
            System.out.println("Setting threshold for " + mpool.getName() +
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   264
                " from " + mpool.getUsageThreshold() + " to " + newThreshold +
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   265
                ".  Current used = " + mu.getUsed());
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   266
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   267
            mpool.setUsageThreshold(newThreshold);
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   268
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   269
            if (mpool.getUsageThreshold() != newThreshold) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   270
                throw new RuntimeException("TEST FAILED: " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                "Threshold for Memory pool " + mpool.getName() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                "is " + mpool.getUsageThreshold() + " but expected to be" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                newThreshold);
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   274
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   276
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   277
            allocator.start();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   278
            // Force Allocator start first
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   279
            phaser.arriveAndAwaitAdvance();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   280
            sweeper.start();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   282
23933
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   283
            try {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   284
                allocator.join();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   285
                // Wait until AllocatorThread's done
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   286
                phaser.arriveAndAwaitAdvance();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   287
                sweeper.join();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   288
            } catch (InterruptedException e) {
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   289
                System.out.println("Unexpected exception:" + e);
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   290
                testFailed = true;
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   291
            }
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   292
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   293
            listener.checkResult();
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   294
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   295
            if (testFailed)
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   296
                throw new RuntimeException("TEST FAILED.");
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   297
754ee146b623 8030628: Update java/lang/management/MemoryMXBean tests to ignore GC setting by jtreg
mtobiass
parents: 22075
diff changeset
   298
            System.out.println(RunUtil.successMessage);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    private static void goSleep(long ms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            Thread.sleep(ms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        } catch (InterruptedException e) {
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   306
            System.out.println("Unexpected exception:" + e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            testFailed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   311
    private static final List<Object> objectPool = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    static class AllocatorThread extends Thread {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        public void doTask() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            int iterations = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            int numElements = (int) (chunkSize / 4); // minimal object size
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   316
            while (!listenerInvoked || mpool.getUsage().getUsed() < mpool.getUsageThreshold()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                iterations++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                if (trace) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                    System.out.println("   Iteration " + iterations +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                        ": before allocation " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                        mpool.getUsage().getUsed());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                Object[] o = new Object[numElements];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                if (iterations <= NUM_CHUNKS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                    // only hold a reference to the first NUM_CHUNKS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                    // allocated objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                    objectPool.add(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                if (trace) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                    System.out.println("               " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                        "  after allocation " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                        mpool.getUsage().getUsed());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                goSleep(100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        }
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   339
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            for (int i = 1; i <= NUM_TRIGGERS; i++) {
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   342
                // Sync with SweeperThread's second phase.
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   343
                phaser.arriveAndAwaitAdvance();
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   344
                System.out.println("AllocatorThread is doing task " + i +
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   345
                    " phase " + phaser.getPhase());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                doTask();
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   347
                // Sync with SweeperThread's first phase.
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   348
                phaser.arriveAndAwaitAdvance();
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   349
                System.out.println("AllocatorThread done task " + i +
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   350
                    " phase " + phaser.getPhase());
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   351
                if (testFailed) {
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   352
                    return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    static class SweeperThread extends Thread {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        private void doTask() {
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   360
            int iterations = 0;
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   361
            if (trace) {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   362
                System.out.println("SweeperThread clearing allocated objects.");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   363
            }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   364
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            for (; mpool.getUsage().getUsed() >=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                       mpool.getUsageThreshold();) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                // clear all allocated objects and invoke GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                objectPool.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                mm.gc();
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   370
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   371
                if (trace) {
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   372
                    iterations++;
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   373
                    System.out.println("SweeperThread called " + iterations +
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   374
                        " time(s) MemoryMXBean.gc().");
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   375
                }
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   376
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                goSleep(100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        }
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   380
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   381
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            for (int i = 1; i <= NUM_TRIGGERS; i++) {
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   384
                // Sync with AllocatorThread's first phase.
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   385
                phaser.arriveAndAwaitAdvance();
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   386
                System.out.println("SweeperThread is doing task " + i +
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   387
                    " phase " + phaser.getPhase());
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   388
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                doTask();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                listenerInvoked = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   393
                // Sync with AllocatorThread's second phase.
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   394
                phaser.arriveAndAwaitAdvance();
32103
252be3ad6800 8130339: Add tracing info to LowMemoryTest.java to help 8130339 diagnosis
olagneau
parents: 30376
diff changeset
   395
                System.out.println("SweeperThread done task " + i +
22075
4c204174a8d9 8029346: LowMemoryTestConcMarkSweepGC.sh fails intermittently with timeout
mchung
parents: 7668
diff changeset
   396
                    " phase " + phaser.getPhase());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                if (testFailed) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
}