test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java
changeset 50225 2942ae532175
parent 50113 caf115bb98ad
child 50251 dc01f2104e46
--- a/test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java	Tue May 22 10:49:20 2018 -0700
+++ b/test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java	Tue May 22 23:27:54 2018 +0200
@@ -62,6 +62,7 @@
 import jdk.management.jfr.FlightRecorderMXBean;
 import jdk.management.jfr.RecordingInfo;
 import jdk.management.jfr.SettingDescriptorInfo;
+import jdk.test.lib.Utils;
 
 /*
  * @test TestUnsupportedVM
@@ -144,7 +145,7 @@
         if (!Configuration.getConfigurations().isEmpty()) {
             throw new AssertionError("Configuration files should not exist on an unsupported VM");
         }
-        Path jfcFile = Files.createTempFile("my", ".jfr");
+        Path jfcFile = Utils.createTempFile("empty", ".jfr");
         assertIOException(() -> Configuration.getConfiguration("default"));
         assertIOException(() -> Configuration.create(jfcFile));
         assertIOException(() -> Configuration.create(new FileReader(jfcFile.toFile())));