NO-JIRA Passing the logger manager on spawned VMs through the testsuite

This commit is contained in:
Clebert Suconic 2017-03-02 09:52:56 -05:00
parent 6f496e7746
commit 61e10fe65a
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ public final class SpawnedVMSupport {
}
}
// The logs will be huge if you don't set this
commandList.add("-Djava.util.logging.manager=org.jboss.logmanager.LogManager");
commandList.add("-Dlogging.configuration=file:../config/logging.properties");
commandList.add("-Djava.io.tmpdir=" + System.getProperty("java.io.tmpdir", "./tmp"));
commandList.add("-Djava.library.path=" + System.getProperty("java.library.path", "./native/bin"));