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) { catch (RuntimeException e) {
e.printStackTrace(); e.printStackTrace();
throw e;
} }
finally { finally {
emulator.stopEmulator(); emulator.stopEmulator();
} }
} }
catch (RuntimeException e) {
e.printStackTrace();
throw e;
}
finally { finally {
emulator.finishEmulatorProcesses(); emulator.finishEmulatorProcesses();
} }
return null;
} }
private static class Statistics { private static class Statistics {