test/hotspot/jtreg/gc/cms/GuardShrinkWarning.java
author lkorinth
Mon, 28 Jan 2019 15:53:56 +0100
changeset 53523 4c5184c56dc2
parent 50455 2b73cce96dce
child 54638 9b8926bf85c1
permissions -rw-r--r--
8214799: Add package declaration to each JTREG test case in the gc folder Reviewed-by: lmesnik, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     1
/*
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
     2
 * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     4
 *
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     7
 * published by the Free Software Foundation.
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     8
 *
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    13
 * accompanied this code).
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    14
 *
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    18
 *
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    21
 * questions.
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    22
 */
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    23
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    24
package gc.cms;
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    25
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    26
/**
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    27
 * @test GuardShrinkWarning
48883
0f1be3c7b6b2 8197113: combine multiple @key tags in jtreg tests
iignatyev
parents: 47216
diff changeset
    28
 * @key gc regression
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    29
 * @summary Remove warning about CMS generation shrinking.
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    30
 * @bug 8012111
50455
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 48883
diff changeset
    31
 * @requires !vm.graal.enabled
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    32
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 30764
diff changeset
    33
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 17106
diff changeset
    34
 *          java.management
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    35
 * @run main/othervm gc.cms.GuardShrinkWarning
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    36
 * @author jon.masamitsu@oracle.com
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    37
 */
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    38
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    39
import jdk.test.lib.process.OutputAnalyzer;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    40
import jdk.test.lib.process.ProcessTools;
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    41
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    42
public class GuardShrinkWarning {
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    43
  public static void main(String args[]) throws Exception {
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    44
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    45
    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    46
      "-showversion",
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    47
      "-XX:+UseConcMarkSweepGC",
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    48
      "-XX:+ExplicitGCInvokesConcurrent",
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    49
      SystemGCCaller.class.getName()
17106
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    50
      );
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    51
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    52
    OutputAnalyzer output = new OutputAnalyzer(pb.start());
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    53
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    54
    output.shouldNotContain("Shrinking of CMS not yet implemented");
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    55
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    56
    output.shouldNotContain("error");
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    57
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    58
    output.shouldHaveExitValue(0);
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    59
  }
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    60
  static class SystemGCCaller {
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    61
    public static void main(String [] args) {
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    62
      System.gc();
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    63
    }
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    64
  }
1ac17c50420a 8012111: Remove warning about CMS generation shrinking.
jmasa
parents:
diff changeset
    65
}