From ee2ba7946a5cbe49098aa236befc4e7fad25e307 Mon Sep 17 00:00:00 2001 From: Weijun Wang Date: Fri, 6 Feb 2015 11:38:29 +0800 Subject: [PATCH] 8072615: test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java wrong on Windows Reviewed-by: xuelei --- jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java b/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java index 57a74fcf794..4fedb362c5c 100644 --- a/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java +++ b/jdk/test/lib/testlibrary/jdk/testlibrary/SimpleSSLContext.java @@ -56,7 +56,7 @@ public class SimpleSSLContext { */ public SimpleSSLContext () throws IOException { String paths = System.getProperty("test.src.path"); - StringTokenizer st = new StringTokenizer(paths,":"); + StringTokenizer st = new StringTokenizer(paths, File.pathSeparator); boolean securityExceptions = false; while (st.hasMoreTokens()) { String path = st.nextToken();