Wait for process to exit when stopping DevTools integration test apps
This commit is contained in:
@@ -78,7 +78,7 @@ public class DevToolsIntegrationTests {
|
||||
}
|
||||
|
||||
@After
|
||||
public void stopApplication() {
|
||||
public void stopApplication() throws InterruptedException {
|
||||
this.launchedApplication.stop();
|
||||
}
|
||||
|
||||
|
||||
@@ -37,9 +37,10 @@ class LaunchedApplication {
|
||||
this.processes = processes;
|
||||
}
|
||||
|
||||
void stop() {
|
||||
void stop() throws InterruptedException {
|
||||
for (Process process : this.processes) {
|
||||
process.destroy();
|
||||
process.waitFor();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user