jdk/test/com/sun/net/httpserver/SelCacheTest.java
changeset 26206 fb87c4051d65
parent 5506 202f599c92aa
--- a/jdk/test/com/sun/net/httpserver/SelCacheTest.java	Mon Aug 25 18:17:24 2014 +0200
+++ b/jdk/test/com/sun/net/httpserver/SelCacheTest.java	Tue Aug 26 10:10:58 2014 +0100
@@ -24,11 +24,14 @@
 /**
  * @test
  * @bug 6270015
+ * @library /lib/testlibrary/
+ * @build jdk.testlibrary.SimpleSSLContext
  * @run main/othervm -Dsun.net.httpserver.selCacheTimeout=2 SelCacheTest
  * @summary  Light weight HTTP server
  */
 
 import com.sun.net.httpserver.*;
+import jdk.testlibrary.SimpleSSLContext;
 
 import java.util.*;
 import java.util.concurrent.*;
@@ -65,7 +68,7 @@
             executor = Executors.newCachedThreadPool();
             s1.setExecutor (executor);
             s2.setExecutor (executor);
-            ctx = new SimpleSSLContext(System.getProperty("test.src")).get();
+            ctx = new SimpleSSLContext().get();
             s2.setHttpsConfigurator(new HttpsConfigurator (ctx));
             s1.start();
             s2.start();