System.out.print ("Test13: ");
InetSocketAddress addr = new InetSocketAddress (0);
s1 = HttpServer.create (addr, 0);
s2 = HttpsServer.create (addr, 0);
HttpHandler h = new FileServerHandler (root);
HttpContext c1 = s1.createContext ("/test1", h);
HttpContext c2 = s2.createContext ("/test1", h);
executor = Executors.newCachedThreadPool();
s1.setExecutor (executor);
s2.setExecutor (executor);
ctx = new SimpleSSLContext(System.getProperty("test.src")).get();
s2.setHttpsConfigurator(new HttpsConfigurator (ctx));