< prev index next >

test/jdk/jdk/jfr/jcmd/TestJcmdStopReadOnlyFile.java

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


  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.jcmd;
  27 
  28 import java.nio.file.Path;
  29 import java.nio.file.Paths;
  30 
  31 import jdk.test.lib.jfr.FileHelper;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 /*
  35  * @test
  36  * @summary Verify error when stopping with read-only file.
  37  * @key jfr

  38  * @library /test/lib /test/jdk
  39  * @run main/othervm jdk.jfr.jcmd.TestJcmdStopReadOnlyFile
  40  */
  41 public class TestJcmdStopReadOnlyFile {
  42 
  43 
  44     public static void main(String[] args) throws Exception {
  45         String name = "TestJcmdStopReadOnlyFile";
  46         Path readonlyFile = FileHelper.createReadOnlyFile(Paths.get(".", name + ".jfr"));
  47         if (!FileHelper.isReadOnlyPath(readonlyFile)) {
  48             System.out.println("Could not create read-only file. Ignoring test.");
  49             return;
  50         }
  51 
  52         OutputAnalyzer output = JcmdHelper.jcmd("JFR.start", "name=" + name);
  53         JcmdAsserts.assertRecordingHasStarted(output);
  54         JcmdHelper.waitUntilRunning(name);
  55 
  56         output = JcmdHelper.jcmd("JFR.stop",
  57                 "name=" + name,


  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.jcmd;
  27 
  28 import java.nio.file.Path;
  29 import java.nio.file.Paths;
  30 
  31 import jdk.test.lib.jfr.FileHelper;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 /**
  35  * @test
  36  * @summary Verify error when stopping with read-only file.
  37  * @key jfr
  38  * @requires vm.hasJFR
  39  * @library /test/lib /test/jdk
  40  * @run main/othervm jdk.jfr.jcmd.TestJcmdStopReadOnlyFile
  41  */
  42 public class TestJcmdStopReadOnlyFile {
  43 
  44 
  45     public static void main(String[] args) throws Exception {
  46         String name = "TestJcmdStopReadOnlyFile";
  47         Path readonlyFile = FileHelper.createReadOnlyFile(Paths.get(".", name + ".jfr"));
  48         if (!FileHelper.isReadOnlyPath(readonlyFile)) {
  49             System.out.println("Could not create read-only file. Ignoring test.");
  50             return;
  51         }
  52 
  53         OutputAnalyzer output = JcmdHelper.jcmd("JFR.start", "name=" + name);
  54         JcmdAsserts.assertRecordingHasStarted(output);
  55         JcmdHelper.waitUntilRunning(name);
  56 
  57         output = JcmdHelper.jcmd("JFR.stop",
  58                 "name=" + name,
< prev index next >