< prev index next >

test/jdk/jdk/jfr/event/compiler/TestCodeSweeperConfig.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.compiler;
  27 
  28 import java.util.List;
  29 
  30 import jdk.jfr.Recording;
  31 import jdk.jfr.consumer.RecordedEvent;
  32 import jdk.test.lib.jfr.EventNames;
  33 import jdk.test.lib.jfr.Events;
  34 
  35 
  36 /*
  37  * @test
  38  * @key jfr

  39  * @library /test/lib
  40  * @run main/othervm -XX:+UseCodeCacheFlushing -XX:-SegmentedCodeCache jdk.jfr.event.compiler.TestCodeSweeperConfig
  41  * @run main/othervm -XX:+UseCodeCacheFlushing -XX:+SegmentedCodeCache jdk.jfr.event.compiler.TestCodeSweeperConfig
  42  */
  43 public class TestCodeSweeperConfig {
  44 
  45     private final static String EVENT_NAME = EventNames.CodeSweeperConfiguration;
  46 
  47     public static void main(String[] args) throws Exception {
  48         Recording recording = new Recording();
  49         recording.enable(EVENT_NAME);
  50         recording.start();
  51         recording.stop();
  52 
  53         List<RecordedEvent> events = Events.fromRecording(recording);
  54         Events.hasEvents(events);
  55         for (RecordedEvent event : events) {
  56             System.out.println("Event: " + event);
  57             Events.assertField(event, "sweeperEnabled").equal(true);
  58             Events.assertField(event, "flushingEnabled").equal(true);


  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.compiler;
  27 
  28 import java.util.List;
  29 
  30 import jdk.jfr.Recording;
  31 import jdk.jfr.consumer.RecordedEvent;
  32 import jdk.test.lib.jfr.EventNames;
  33 import jdk.test.lib.jfr.Events;
  34 
  35 
  36 /**
  37  * @test
  38  * @key jfr
  39  * @requires vm.hasJFR
  40  * @library /test/lib
  41  * @run main/othervm -XX:+UseCodeCacheFlushing -XX:-SegmentedCodeCache jdk.jfr.event.compiler.TestCodeSweeperConfig
  42  * @run main/othervm -XX:+UseCodeCacheFlushing -XX:+SegmentedCodeCache jdk.jfr.event.compiler.TestCodeSweeperConfig
  43  */
  44 public class TestCodeSweeperConfig {
  45 
  46     private final static String EVENT_NAME = EventNames.CodeSweeperConfiguration;
  47 
  48     public static void main(String[] args) throws Exception {
  49         Recording recording = new Recording();
  50         recording.enable(EVENT_NAME);
  51         recording.start();
  52         recording.stop();
  53 
  54         List<RecordedEvent> events = Events.fromRecording(recording);
  55         Events.hasEvents(events);
  56         for (RecordedEvent event : events) {
  57             System.out.println("Event: " + event);
  58             Events.assertField(event, "sweeperEnabled").equal(true);
  59             Events.assertField(event, "flushingEnabled").equal(true);
< prev index next >