hotspot/test/runtime/logging/SafepointTest.java
author lana
Thu, 04 Feb 2016 11:28:20 -0800
changeset 35720 e66a02d55e71
parent 35193 1e85994e9f56
child 35858 6e704583a38f
permissions -rw-r--r--
Added tag jdk-9+104 for changeset a8ace34fedbc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33763
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     1
/*
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     4
 *
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     8
 *
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.    See the GNU General Public License
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    13
 * accompanied this code).
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    14
 *
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    18
 *
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    21
 * questions.
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    22
 */
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    23
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    24
/*
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    25
 * @test
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    26
 * @bug 8140348
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    27
 * @summary safepoint=trace should have output from each log statement in the code
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    28
 * @library /testlibrary
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    29
 * @modules java.base/sun.misc
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    30
 *          java.management
35193
1e85994e9f56 8145445: [TESTBUG] runtime/logging tests need to properly build and import libraries
rprotacio
parents: 34631
diff changeset
    31
 * @build jdk.test.lib.OutputAnalyzer jdk.test.lib.ProcessTools
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    32
 * @run driver SafepointTest
33763
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    33
 */
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    34
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    35
import java.lang.ref.WeakReference;
35193
1e85994e9f56 8145445: [TESTBUG] runtime/logging tests need to properly build and import libraries
rprotacio
parents: 34631
diff changeset
    36
import jdk.test.lib.OutputAnalyzer;
1e85994e9f56 8145445: [TESTBUG] runtime/logging tests need to properly build and import libraries
rprotacio
parents: 34631
diff changeset
    37
import jdk.test.lib.ProcessTools;
33763
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    38
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    39
public class SafepointTest {
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    40
    public static void main(String[] args) throws Exception {
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    41
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    42
            "-Xlog:safepoint=trace", InnerClass.class.getName());
33763
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    43
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    44
        output.shouldContain("Safepoint synchronization initiated. (");
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    45
        output.shouldContain("Entering safepoint region: ");
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    46
        output.shouldContain("Leaving safepoint region");
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    47
        output.shouldContain("_at_poll_safepoint");
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    48
        output.shouldHaveExitValue(0);
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    49
    }
34631
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    50
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    51
    public static class InnerClass {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    52
        public static byte[] garbage;
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    53
        public static volatile WeakReference<Object> weakref;
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    54
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    55
        public static void createweakref() {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    56
            Object o = new Object();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    57
            weakref = new WeakReference<>(o);
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    58
        }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    59
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    60
        public static void main(String[] args) throws Exception {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    61
            // Cause several safepoints to run GC to see safepoint messages
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    62
            for (int i = 0; i < 2; i++) {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    63
                createweakref();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    64
                while(weakref.get() != null) {
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    65
                    garbage = new byte[8192];
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    66
                    System.gc();
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    67
                }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    68
            }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    69
        }
a8fd6c2a4a11 8144536: Clean up Unified Logging test directory
rprotacio
parents: 34127
diff changeset
    70
    }
33763
cec2333f839c 8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
diff changeset
    71
}