in src/main/java/org/apache/sling/testing/serversetup/instance/SlingTestBase.java [279:291]
protected void blockIfRequested() {
if (keepJarRunning) {
log.info(KEEP_JAR_RUNNING_PROP + " set to true - entering infinite loop"
+ " so that runnable jar stays up. Kill this process to exit.");
synchronized (slingTestState) {
try {
slingTestState.wait();
} catch(InterruptedException iex) {
log.info("InterruptedException in blockIfRequested");
}
}
}
}