Skip to content

Commit

Permalink
8298271: java/security/SignedJar/spi-calendar-provider/TestSPISigned.…
Browse files Browse the repository at this point in the history
…java failing on Windows

Reviewed-by: mullan
  • Loading branch information
jerboaa committed Dec 12, 2022
1 parent d624deb commit cf93933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions test/jdk/ProblemList.txt
Expand Up @@ -618,8 +618,6 @@ sun/security/pkcs11/rsa/TestKeyPairGenerator.java 8295343 linux-al
sun/security/pkcs11/rsa/TestKeyFactory.java 8295343 linux-all
sun/security/pkcs11/KeyStore/Basic.java 8295343 linux-all

java/security/SignedJar/spi-calendar-provider/TestSPISigned.java 8298271 windows-all

############################################################################

# jdk_sound
Expand Down
Expand Up @@ -33,6 +33,7 @@
import java.nio.file.Paths;
import java.nio.file.Path;
import java.nio.file.Files;
import java.io.File;
import static java.util.Calendar.WEDNESDAY;

/*
Expand Down Expand Up @@ -95,7 +96,7 @@ public static void main(String[] args) throws Throwable {
testRun.add("-Djava.locale.providers=SPI");
testRun.add("-cp");
String classPath = System.getProperty("java.class.path");
classPath = classPath + ":" + SIGNED_JAR.toAbsolutePath().toString();
classPath = classPath + File.pathSeparator + SIGNED_JAR.toAbsolutePath().toString();
testRun.add(classPath);
testRun.add(TestSPISigned.class.getSimpleName());
testRun.add("run-test");
Expand Down

0 comments on commit cf93933

Please sign in to comment.