String classPath = getClassPath(jsTestDriverJar.getParentFile());
String[] args = CmdCreator.cmd("java$$-cp$$%s$$com.google.jstestdriver.JsTestDriver --config$$%s$$--port$$%s$$%s$$--browserTimeout$$%s$$--runnerMode$$%s",
classPath, jsTestDriverJar.getAbsolutePath().replaceAll("\\.jar$", ".conf"), portNumber, verboseFlag(), browserTimeout(), "INFO" );
logger.debug("Running command: " + CmdCreator.printCmd(args));
Process process = runTime.exec(args);
childLoggers.add(new ProcessLogger(brjs, process, LogLevel.INFO, LogLevel.ERROR, "server"));
childProcesses.add(process);
waitForServer(0);
}