test/gc/startup_warnings/TestCMSNoIncrementalMode.java

Print this page




  20 * or visit www.oracle.com if you need additional information or have any
  21 * questions.
  22 */
  23 
  24 /*
  25 * @test TestCMSNoIncrementalMode
  26 * @key gc
  27 * @bug 8006398
  28 * @summary Test that CMS with incremental mode turned off does not print a warning message
  29 * @library /testlibrary
  30 */
  31 
  32 import com.oracle.java.testlibrary.OutputAnalyzer;
  33 import com.oracle.java.testlibrary.ProcessTools;
  34 
  35 public class TestCMSNoIncrementalMode {
  36 
  37   public static void main(String args[]) throws Exception {
  38     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseConcMarkSweepGC", "-XX:-CMSIncrementalMode", "-version");
  39     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  40     output.shouldNotContain("warning");
  41     output.shouldNotContain("error");
  42     output.shouldHaveExitValue(0);
  43   }
  44 
  45 }


  20 * or visit www.oracle.com if you need additional information or have any
  21 * questions.
  22 */
  23 
  24 /*
  25 * @test TestCMSNoIncrementalMode
  26 * @key gc
  27 * @bug 8006398
  28 * @summary Test that CMS with incremental mode turned off does not print a warning message
  29 * @library /testlibrary
  30 */
  31 
  32 import com.oracle.java.testlibrary.OutputAnalyzer;
  33 import com.oracle.java.testlibrary.ProcessTools;
  34 
  35 public class TestCMSNoIncrementalMode {
  36 
  37   public static void main(String args[]) throws Exception {
  38     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseConcMarkSweepGC", "-XX:-CMSIncrementalMode", "-version");
  39     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  40     output.shouldNotContain("deprecated");
  41     output.shouldNotContain("error");
  42     output.shouldHaveExitValue(0);
  43   }
  44 
  45 }