Android tests: print all exceptions
This commit is contained in:
+5
-1
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user