Wait for process to exit when stopping DevTools integration test apps
This commit is contained in:
parent
4106615425
commit
09b41a33e8
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue