diff options
Diffstat (limited to 'src/test/java/pl/edu/mimuw/cloudatlas')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java index a185649..baf77ea 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java @@ -23,15 +23,19 @@ public class AgentTest { @BeforeClass public static void bindApi() throws Exception { registryProcess = Runtime.getRuntime().exec("./scripts/registry"); - Thread.sleep(1000); + Thread.sleep(2000); agentProcess = Runtime.getRuntime().exec("./gradlew runAgent"); - Thread.sleep(1000); + Thread.sleep(5000); } @AfterClass public static void killProcesses() throws Exception { - registryProcess.destroy(); - agentProcess.destroy(); + try { + registryProcess.destroy(); + agentProcess.destroy(); + } catch (Exception e) { + System.out.println("Caught exception: " + e); + } } @Test |