test/hotspot/jtreg/runtime/logging/VMOperationTest.java
author prr
Thu, 26 Jul 2018 10:00:40 -0700
changeset 51251 0a7a0a6dfa22
parent 50407 3dfdcca00ecc
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     1
/*
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35193
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     4
 *
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     7
 * published by the Free Software Foundation.
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     8
 *
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
41705
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40631
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    13
 * accompanied this code).
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    14
 *
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    18
 *
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    21
 * questions.
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    22
 */
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    23
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    24
/*
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    25
 * @test
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    26
 * @bug 8143157
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    27
 * @summary vmoperation=debug should have logging output
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    28
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 35858
diff changeset
    29
 * @modules java.base/jdk.internal.misc
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    30
 *          java.management
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    31
 * @run driver VMOperationTest
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    32
 */
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    33
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    34
import java.lang.ref.WeakReference;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    35
import jdk.test.lib.process.OutputAnalyzer;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    36
import jdk.test.lib.process.ProcessTools;
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    37
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    38
public class VMOperationTest {
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    39
    public static void main(String[] args) throws Exception {
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35193
diff changeset
    40
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:vmoperation=debug",
50407
3dfdcca00ecc 8204168: Increase small heap sizes in tests to accommodate ZGC
stefank
parents: 47216
diff changeset
    41
                                                                  "-Xmx128m",
3dfdcca00ecc 8204168: Increase small heap sizes in tests to accommodate ZGC
stefank
parents: 47216
diff changeset
    42
                                                                  "-Xms128m",
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35193
diff changeset
    43
                                                                  InternalClass.class.getName());
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    44
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    45
        output.shouldContain("VM_Operation (");
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    46
        output.shouldHaveExitValue(0);
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    47
    }
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    48
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    49
    public static class InternalClass {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    50
        public static byte[] garbage;
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    51
        public static volatile WeakReference<Object> weakref;
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    52
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    53
        public static void createweakref() {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    54
            Object o = new Object();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    55
            weakref = new WeakReference<>(o);
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    56
        }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    57
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    58
        // Loop until a GC runs.
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    59
        public static void main(String[] args) throws Exception {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    60
            createweakref();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    61
            while (weakref.get() != null) {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    62
                garbage = new byte[8192];
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    63
                System.gc();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    64
            }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    65
        }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34262
diff changeset
    66
    }
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents:
diff changeset
    67
}