test/gc/g1/TestGCLogMessages.java

changeset 6930
570cb6369f17
parent 6413
595c0f60d50d
child 6950
6e1f418b39c3
     1.1 --- a/test/gc/g1/TestGCLogMessages.java	Mon Jul 21 09:40:19 2014 +0200
     1.2 +++ b/test/gc/g1/TestGCLogMessages.java	Mon Jul 21 09:40:19 2014 +0200
     1.3 @@ -23,7 +23,7 @@
     1.4  
     1.5  /*
     1.6   * @test TestPrintGCDetails
     1.7 - * @bug 8035406 8027295 8035398
     1.8 + * @bug 8035406 8027295 8035398 8019342
     1.9   * @summary Ensure that the PrintGCDetails output for a minor GC with G1
    1.10   * includes the expected necessary messages.
    1.11   * @key gc
    1.12 @@ -48,6 +48,8 @@
    1.13      OutputAnalyzer output = new OutputAnalyzer(pb.start());
    1.14  
    1.15      output.shouldNotContain("[Redirty Cards");
    1.16 +    output.shouldNotContain("[Parallel Redirty");
    1.17 +    output.shouldNotContain("[Redirtied Cards");
    1.18      output.shouldNotContain("[Code Root Purge");
    1.19      output.shouldNotContain("[String Dedup Fixup");
    1.20      output.shouldNotContain("[Young Free CSet");
    1.21 @@ -63,6 +65,8 @@
    1.22      output = new OutputAnalyzer(pb.start());
    1.23  
    1.24      output.shouldContain("[Redirty Cards");
    1.25 +    output.shouldNotContain("[Parallel Redirty");
    1.26 +    output.shouldNotContain("[Redirtied Cards");
    1.27      output.shouldContain("[Code Root Purge");
    1.28      output.shouldContain("[String Dedup Fixup");
    1.29      output.shouldNotContain("[Young Free CSet");
    1.30 @@ -80,6 +84,8 @@
    1.31      output = new OutputAnalyzer(pb.start());
    1.32  
    1.33      output.shouldContain("[Redirty Cards");
    1.34 +    output.shouldContain("[Parallel Redirty");
    1.35 +    output.shouldContain("[Redirtied Cards");
    1.36      output.shouldContain("[Code Root Purge");
    1.37      output.shouldContain("[String Dedup Fixup");
    1.38      output.shouldContain("[Young Free CSet");

mercurial