< prev index next >

test/jdk/jdk/jfr/api/event/TestIsEnabledMultiple.java

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


  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  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.api.event;
  27 
  28 import jdk.jfr.Event;
  29 import jdk.jfr.EventType;
  30 import jdk.jfr.Recording;
  31 import jdk.test.lib.Asserts;
  32 
  33 /*
  34  * @test
  35  * @summary Test Event.isEnabled() with multiple recordings
  36  * @key jfr

  37  * @library /test/lib
  38  * @run main/othervm jdk.jfr.api.event.TestIsEnabledMultiple
  39  */
  40 
  41 public class TestIsEnabledMultiple {
  42 
  43     enum When {
  44         BeforeStart, DuringRecording
  45     }
  46 
  47     enum RecState {
  48         New, Running
  49     }
  50 
  51     enum EnableState {
  52         Enabled, Disabled
  53     }
  54 
  55     public static void main(String[] args) throws Exception {
  56         for (RecState recStateA : RecState.values()) {




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  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.api.event;
  27 
  28 import jdk.jfr.Event;
  29 import jdk.jfr.EventType;
  30 import jdk.jfr.Recording;
  31 import jdk.test.lib.Asserts;
  32 
  33 /**
  34  * @test
  35  * @summary Test Event.isEnabled() with multiple recordings
  36  * @key jfr
  37  * @requires vm.hasJFR
  38  * @library /test/lib
  39  * @run main/othervm jdk.jfr.api.event.TestIsEnabledMultiple
  40  */
  41 
  42 public class TestIsEnabledMultiple {
  43 
  44     enum When {
  45         BeforeStart, DuringRecording
  46     }
  47 
  48     enum RecState {
  49         New, Running
  50     }
  51 
  52     enum EnableState {
  53         Enabled, Disabled
  54     }
  55 
  56     public static void main(String[] args) throws Exception {
  57         for (RecState recStateA : RecState.values()) {


< prev index next >