< prev index next >

test/jdk/jdk/jfr/event/os/TestSystemProcess.java

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


  15  * accompanied this code).
  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.os;
  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  * @test
  37  * @key jfr


  38  * @library /test/lib
  39  * @run main/othervm jdk.jfr.event.os.TestSystemProcess
  40  */
  41 public class TestSystemProcess {
  42     private final static String EVENT_NAME = EventNames.SystemProcess;
  43 
  44     public static void main(String[] args) throws Throwable {
  45         Recording recording = new Recording();
  46         recording.enable(EVENT_NAME);
  47         recording.start();
  48         recording.stop();
  49         List<RecordedEvent> events = Events.fromRecording(recording);
  50         Events.hasEvents(events);
  51         for (RecordedEvent event : events) {
  52             System.out.println("Event: " + event);
  53             Events.assertField(event, "pid").notEmpty();
  54         }
  55     }
  56 }


  15  * accompanied this code).
  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.os;
  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  * @test
  37  * @key jfr
  38  * @requires vm.hasJFR
  39  * @requires vm.hasJFR
  40  * @library /test/lib
  41  * @run main/othervm jdk.jfr.event.os.TestSystemProcess
  42  */
  43 public class TestSystemProcess {
  44     private final static String EVENT_NAME = EventNames.SystemProcess;
  45 
  46     public static void main(String[] args) throws Throwable {
  47         Recording recording = new Recording();
  48         recording.enable(EVENT_NAME);
  49         recording.start();
  50         recording.stop();
  51         List<RecordedEvent> events = Events.fromRecording(recording);
  52         Events.hasEvents(events);
  53         for (RecordedEvent event : events) {
  54             System.out.println("Event: " + event);
  55             Events.assertField(event, "pid").notEmpty();
  56         }
  57     }
  58 }
< prev index next >