Skip to content

Commit 2260d0c

Browse files
committed
8231317: jdk/jfr/jcmd/TestJcmdConfigure.java fails with "java.lang.RuntimeException: assertTrue: expected true, was false"
Reviewed-by: ysuenaga, dcubed
1 parent b8715b4 commit 2260d0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/jdk/ProblemList.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,6 @@ jdk/jfr/api/recording/event/TestPeriod.java 8215890 gener
884884
jdk/jfr/event/io/EvilInstrument.java 8221331 generic-all
885885
jdk/jfr/event/runtime/TestNetworkUtilizationEvent.java 8228990,8229370 generic-all
886886
jdk/jfr/event/compiler/TestCodeSweeper.java 8225209 generic-all
887-
jdk/jfr/jcmd/TestJcmdConfigure.java 8231317 windows-x64
888887

889888
############################################################################
890889

test/jdk/jdk/jfr/jcmd/TestJcmdConfigure.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
package jdk.jfr.jcmd;
2727

28+
import java.io.File;
2829
import java.nio.file.Files;
2930
import java.nio.file.Paths;
3031
import java.util.ArrayList;
@@ -56,8 +57,8 @@ public class TestJcmdConfigure {
5657
private static final String SAMPLE_THREADS = "samplethreads";
5758
private static final String UNSUPPORTED_OPTION = "unsupportedoption";
5859

59-
private static final String REPOSITORYPATH_1 = "./repo1";
60-
private static final String REPOSITORYPATH_2 = "./repo2";
60+
private static final String REPOSITORYPATH_1 = "." + File.pathSeparator + "repo1";
61+
private static final String REPOSITORYPATH_2 = "." + File.pathSeparator + "repo2";
6162

6263
private static final String REPOSITORYPATH_SETTING_1 = "repositorypath="+REPOSITORYPATH_1;
6364
private static final String REPOSITORYPATH_SETTING_2 = "repositorypath="+REPOSITORYPATH_2;

0 commit comments

Comments
 (0)