< prev index next >

test/jdk/jdk/jfr/api/recorder/TestRecorderInitialized.java

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


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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.recorder;
  27 
  28 import jdk.jfr.FlightRecorder;
  29 import jdk.jfr.FlightRecorderListener;
  30 import jdk.test.lib.Asserts;
  31 
  32 /*
  33  * @test TestRecorderListener
  34  * @key jfr

  35  * @library /test/lib
  36  *
  37  * @run main/othervm jdk.jfr.api.recorder.TestRecorderInitialized
  38  */
  39 public class TestRecorderInitialized {
  40 
  41     static class Listener implements FlightRecorderListener {
  42         private boolean notified;
  43 
  44         @Override
  45         public void recorderInitialized(FlightRecorder r) {
  46             notified = true;
  47         }
  48     }
  49 
  50     public static void main(String...args) {
  51         Listener l1 = new Listener();
  52 
  53         FlightRecorder.addListener(l1);
  54         Asserts.assertFalse(l1.notified, "Listener shouldn't be notified unless Flight Recorder is initialized");


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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.recorder;
  27 
  28 import jdk.jfr.FlightRecorder;
  29 import jdk.jfr.FlightRecorderListener;
  30 import jdk.test.lib.Asserts;
  31 
  32 /**
  33  * @test TestRecorderListener
  34  * @key jfr
  35  * @requires vm.hasJFR
  36  * @library /test/lib
  37  *
  38  * @run main/othervm jdk.jfr.api.recorder.TestRecorderInitialized
  39  */
  40 public class TestRecorderInitialized {
  41 
  42     static class Listener implements FlightRecorderListener {
  43         private boolean notified;
  44 
  45         @Override
  46         public void recorderInitialized(FlightRecorder r) {
  47             notified = true;
  48         }
  49     }
  50 
  51     public static void main(String...args) {
  52         Listener l1 = new Listener();
  53 
  54         FlightRecorder.addListener(l1);
  55         Asserts.assertFalse(l1.notified, "Listener shouldn't be notified unless Flight Recorder is initialized");
< prev index next >