Android tests: print all exceptions

This commit is contained in:
Natalia.Ukhorskaya
2013-02-26 19:43:19 +04:00
parent 39e5115102
commit 4ba4ac7e4e
@@ -204,15 +204,19 @@ public class CodegenTestsOnAndroidRunner {
}
catch (RuntimeException e) {
e.printStackTrace();
throw e;
}
finally {
emulator.stopEmulator();
}
}
catch (RuntimeException e) {
e.printStackTrace();
throw e;
}
finally {
emulator.finishEmulatorProcesses();
}
return null;
}
private static class Statistics {