Travis CI: console linking fix

This commit is contained in:
Denis Feklushkin 2017-10-14 13:17:28 +07:00
parent 60b2c3a05a
commit 1c561ddbd0
1 changed files with 5 additions and 2 deletions

View File

@ -505,8 +505,11 @@ extern(C) int DLANGUImain(string[] args) {
Log.i("Entering UIAppMain: ", args);
int result = -1;
try {
result = UIAppMain(args);
Log.i("UIAppMain returned ", result);
version (unittest) {
} else {
result = UIAppMain(args);
Log.i("UIAppMain returned ", result);
}
} catch (Exception e) {
Log.e("Abnormal UIAppMain termination");
Log.e("UIAppMain exception: ", e);